How to remove this damn 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: How to remove this damn warning 213: tag mismatch (
/showthread.php?tid=548758)
How to remove this damn warning 213: tag mismatch -
bustern - 02.12.2014
So i made AC for my GM and started using my stock
PHP код:
stock SetDodHealth(playerid, amount)
{
PlayerInfo[playerid][pHealth] = amount;
return 1;
}
instrad of SetPlayerHealth, but whenever i have in my script SetDodHealth(playerid, SOMETHING INSTEAD OF NUMBERS like minigamehp);
i get this damn warning, how can i fix this ?
Re: How to remove this damn warning 213: tag mismatch -
Dignity - 02.12.2014
Is pHealth a float value? If so, change the "amount" to "Float: amount". Like this:
pawn Код:
stock SetDodHealth(playerid, Float: amount)
{
PlayerInfo[playerid][pHealth] = amount;
return 1;
}
Re: How to remove this damn warning 213: tag mismatch -
bustern - 02.12.2014
Thanks buddy