SA-MP Forums Archive
HELP!!Tag mismatch warn - 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: HELP!!Tag mismatch warn (/showthread.php?tid=152971)



HELP!!Tag mismatch warn - shithead - 06.06.2010

new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X,Y,Z);
PlayerInfo[playerid][pBombx] = X;
PlayerInfo[playerid][pBomby] = Y;
PlayerInfo[playerid][pBombz] = Z;


In last three rows when i try to compile my GM dumps out 3 warns:Tag mismatch
What am i doing wrong?Please,help!



Re: HELP!!Tag mismatch warn - MadeMan - 06.06.2010

In your PlayerInfo enum

pawn Код:
Float:pBombx,
Float:pBomby,
Float:pBombz,



Re: HELP!!Tag mismatch warn - shithead - 06.06.2010

Quote:
Originally Posted by MadeMan
In your PlayerInfo enum

pawn Код:
Float:pBombx,
Float:pBomby,
Float:pBombz,
Silly me,big thanks!Lock