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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: warning 213: tag mismatch (
/showthread.php?tid=117865)
warning 213: tag mismatch -
pierhs - 02.01.2010
I have this:
Код:
SafePlayerArmor[MAX_PLAYERS];
And the warning is here:
Код:
SafePlayerArmor[playerid] = PlayerInfo[playerid][pArmour];
What I did wrong?
Re: warning 213: tag mismatch -
[HiC]TheKiller - 02.01.2010
It has to be a float.
pawn Код:
new Float:SafePlayerArmor[MAX_PLAYERS];
and pArmour must be a float.
Re: warning 213: tag mismatch -
pierhs - 02.01.2010
Thanks