SA-MP Forums Archive
warning 213: 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: warning 213: tag mismatch (/showthread.php?tid=349930)



warning 213: tag mismatch - Azazelo - 10.06.2012

This two line

Код:
new Text3D:mylabel = 1; //  warning 213: tag mismatch
DeletePlayer3DTextLabel(playerid,mylabel); //  warning 213: tag mismatch
and i try this
Код:
new Text3D:mylabel;
DeletePlayer3DTextLabel(playerid,mylabel);//  warning 213: tag mismatch
Right way to do this is ? I`m out of my eye`s with this.


Re: warning 213: tag mismatch - sniperwars - 10.06.2012

pawn Код:
new Text3D:mylabel;
DeletePlayer3DTextLabel(playerid, PlayerText3D:mylabel)