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=554468)



Warning 213: tag mismatch - CrazyChoco - 03.01.2015

Hello,
I'm getting this warning when compiling my script:
warning 213: tag mismatch.

My code is:
Код HTML:
	CPT[0] = CreateDynamic3DTextLabel(ENTER, DT, 2287.0347,2432.3640,10.8203, 45.5, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 0, 0, -1, 45.5);
Basically, what i'm trying to do is to display the variable exit variable in a specific interrior and world.


Re: Warning 213: tag mismatch - ikkentim - 03.01.2015

Did you add a tag to the definition of CPT? It Should have the 'Text3D:' tag. If it doesn't, add it (eg.
pawn Код:
new Text3D:CPT[...];
)


Re: Warning 213: tag mismatch - Lawbringer - 03.01.2015

Quote:
Originally Posted by ikkentim
Посмотреть сообщение
Did you add a tag to the definition of CPT? It Should have the 'Text3D:' tag. If it doesn't, add it (eg.
pawn Код:
new Text3D:CPT[...];
)
Do this. Pawn is a typeless language, meaning it doesn't have definitive data types. To compensate for functionality, it has a cell tagging system so that resources can be differentiated between numbers and strings, etc.