01.08.2010, 05:03
I get the following error on the lines marked:
Код:
warning 213: tag mismatch
pawn Код:
public UpdatePlayerPos(playerid)
{
new PInterior;
PInterior = GetPlayerInterior(playerid);
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid,x,y,z);
PlayerShit[playerid][PLAYER_INT] = PInterior;
PlayerShit[playerid][PLAYER_MYX] = x; //here
PlayerShit[playerid][PLAYER_MYY] = y; //here
PlayerShit[playerid][PLAYER_MYZ] = z; //and here
return 1;
}