SA-MP Forums Archive
Need a little bit of help. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need a little bit of help. (/showthread.php?tid=193092)



Need a little bit of help. - DragonBlaster50 - 24.11.2010

Hey guys, Pretty long time ago that I posted here, I got stuck on a problem.

This is the warning:

Код:
C:\Documents and Settings\Wouter\Bureaublad\SA-MP Scripting\pawno\J-RP.pwn(215) : warning 213: tag mismatch
C:\Documents and Settings\Wouter\Bureaublad\SA-MP Scripting\pawno\J-RP.pwn(216) : warning 213: tag mismatch
And the code:

Код:
ImAGuard = Create3DTextLabel("Prison Guard", 0x3A47DEFF, 0.0, 0.0, 0.0, 25.0, -1,  1); ** 1 error
Attach3DTextLabelToPlayer(ImAGuard, playerid, 0.0, 0.0, 0.7); ** 1 error
Thanks!


Re: Need a little bit of help. - DragonBlaster50 - 24.11.2010

Please?? lulz


Re: Need a little bit of help. - The_Moddler - 24.11.2010

You know what, I was going to help you, but since that you are impacient and you think that your post is more urgent than others, I won't, you will have to wait to someone else now, just keep with my bumping.


Re: Need a little bit of help. - Anthonyx3' - 24.11.2010

They aren't errors they are warnings


Re: Need a little bit of help. - DragonBlaster50 - 25.11.2010

Bump(ercars)


Re: Need a little bit of help. - Arcanize - 25.11.2010

is "IAmAGuard" Defined?

Код:
new Text3D:IAmAGuard[MAX_PLAYERS];
or try this:

Код:
ImAGuard[playerid] = Create3DTextLabel("Prison Guard", 0x3A47DEFF, 0.0, 0.0, 0.0, 25.0, -1,  1);
Attach3DTextLabelToPlayer(ImAGuard, playerid, 0.0, 0.0, 0.7);



Re: Need a little bit of help. - DragonBlaster50 - 25.11.2010

It was the above part that was wrong, Thanks.