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=589193)
warning 213: tag mismatch -
Balcan Fox - 16.09.2015
Hello x)
I wanna sort 3DTextLabels so I can delete one of them during the game. Everything was ok:
Код:
Create3DTextLabel(string, -1, Bizz[i][X],Bizz[i][Y],Bizz[i][Z], 5,0,0);
And then I added this:
Код:
new BizzT[23]; // - global variable
.
.
.
BizzT[i] = Create3DTextLabel(string, -1, Bizz[i][X],Bizz[i][Y],Bizz[i][Z], 5,0,0); // - When loading shops...
Warning line is the last one
EDIT: Found it. Forgot this one
Код:
new Text3D:BizzT[23];