warning help please! - 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 help please! (
/showthread.php?tid=446699)
warning help please! -
altayeb789 - 26.06.2013
Hi every body
i have an warning help please!
warning 213: tag mismatch
Re: warning help please! -
Deathstalker - 26.06.2013
It means you're trying to give whatever function you're using the wrong type of data, example:
pawn Код:
new h;
GetPlayerHealth(playerid, h);
This would result in a tag mismatch. To fix it:
pawn Код:
new Float:h;
GetPlayerHealth(playerid, h);
If you gave us the code the error is corresponding to it would have been so much easier...