SA-MP Forums Archive
Create#dLabel - 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)
+--- Thread: Create#dLabel (/showthread.php?tid=520747)



Create#dLabel - Tuntun - 20.06.2014

Код:
	Create3DTextLabel("Rob Bank", 2309.1899,-8.4444,26.7422, 200, 1, 0);
Error:
Код:
E:\WOT\filterscripts\rob.pwn(92) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.



Re: Create#dLabel - Haydz - 20.06.2014

You've forgotten to set a color for your 3d Text.

pawn Код:
Create3DTextLabel("Rob Bank", COLOR_HERE, 2309.1899,-8.4444,26.7422, 200, 1, 0);
Create3DTextLabel(text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, virtualworld, testLOS);



Re: Create#dLabel - Tuntun - 20.06.2014

Quote:
Originally Posted by Haydz
Посмотреть сообщение
You've forgotten to set a color for your 3d Text.

pawn Код:
Create3DTextLabel("Rob Bank", COLOR_HERE, 2309.1899,-8.4444,26.7422, 200, 1, 0);
Create3DTextLabel(text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, virtualworld, testLOS);
OOh thanks dude.