SA-MP Forums Archive
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=423336)



Tag Mismatch - PakPak - 17.03.2013

Hello,

I got a warning : Tag Mismatch on this line :

pawn Код:
if(strcmp(cmd, "creer", true) == 0)
        {
            new texte;
            new Float:x, Float:y, Float:z;
            GetPlayerPos(playerid, x, y, z);
            format(string, sizeof(string), "%s", result);
[COLOR="Red"]                   texte = Create3DTextLabel(string, 0x008080FF, x, y, z, 40.0, 0, 0);[/COLOR]
            return 1;
        }



Re: Tag Mismatch - Jstylezzz - 17.03.2013

make sure you have
pawn Код:
new Text3D:texte;
and not
pawn Код:
new texte;



Re : Tag Mismatch - PakPak - 17.03.2013

Thanks a lot