SA-MP Forums Archive
3D Text Labels - 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: 3D Text Labels (/showthread.php?tid=165749)



3D Text Labels - mastasquizy - 06.08.2010

Код:
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(890) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(891) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(892) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(893) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(894) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(895) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(902) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(903) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(904) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(905) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(906) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(907) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(914) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(915) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(916) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(917) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(918) : warning 213: tag mismatch
C:\Users\Compaq\Random Access\SA-MP Server\gamemodes\Capturetheflag.pwn(919) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


18 Warnings.
This happens for text lables such as:
pawn Код:
tl[3] = Create3DTextLabel("[Stationary]\nLos Santos Flag 3",0x00BB00AA,1291.087036, -788.394104, 98.231018,200,0,0);
The labels work fine in-game, but why does it give me warnings for no reason?


Re: 3D Text Labels - Kayla.S - 06.08.2010

Try removing this: tl[3] =


Re: 3D Text Labels - JaTochNietDan - 06.08.2010

Are you initializing the tl variable as a Text3D variable?

pawn Код:
new Text3D:tl[30];



Re: 3D Text Labels - mastasquizy - 06.08.2010

Quote:
Originally Posted by Kayla.S
Посмотреть сообщение
Try removing this: tl[3] =
umm yea.....i kinda need that to umm.......USE IT??
Quote:
Originally Posted by JaTochNietDan
Посмотреть сообщение
Are you initializing the tl variable as a Text3D variable?

pawn Код:
new Text3D:tl[30];
I did that before and it did something crazy, now it works fine, thanks!!