[Help]Tag Mismatch - 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: [Help]Tag Mismatch (
/showthread.php?tid=280079)
[Help]Tag Mismatch -
yaniv15 - 30.08.2011
PHP код:
warning 213: tag mismatch
the lines are:
PHP код:
new somethingcool;
somethingcool = Create3DTextLabel("Test", 0xAA3333AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle(somethingcool , 13, 0.0, 0.0, 2.0);
whats wrong?
Re: [Help]Tag Mismatch -
Hiddos - 30.08.2011
Common mistake. You need to use the Text3D: tag, just like float variables use the Float: tag:
pawn Код:
new Text3D:somethingcool;
Good luck
Re: [Help]Tag Mismatch -
=WoR=Varth - 30.08.2011
pawn Код:
new Text3D:somethingcool;
Re: [Help]Tag Mismatch -
yaniv15 - 30.08.2011
THANK YOU VERY MUCH!!! have a nice day!