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: tag mismatch (
/showthread.php?tid=653355)
tag mismatch -
lolya93 - 02.05.2018
Hi i have problem about that:
PHP код:
new Text;
Text = Create3DTextLabel("text blablalbalbla",COLOR_RED,sposX, sposY,sposZ, 15.0, 0, 0);
when i compile my script gives that;
PHP код:
warning 213: tag mismatch
Re: tag mismatch -
JesterlJoker - 02.05.2018
PHP код:
new Text3D: Text;
new 3DText: Text;
Either two should work, I can't fully test it yet sorry
Re: tag mismatch -
lolya93 - 02.05.2018
Quote:
Originally Posted by JesterlJoker
PHP код:
new Text3D: Text;
new 3DText: Text;
Either two should work, I can't fully test it yet sorry
|
yeah first one fixed the error thanks for reply.
Re: tag mismatch -
SkmDanny - 02.05.2018
PHP код:
new Text3D:Text;
Text = Create3DTextLabel("text blablalbalbla", -1, sposX, sposY, sposZ, 15.0, 0, 0);