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



Tag mismatch - Jack_Wilson - 19.02.2012

pawn Код:
enum E_PLAYER_DATA
{
    age,
    ictut,
    origin,
    money,
    skin,
    adminlevel,
    paycheck,
    Float:position_x,
    Float:position_y,
    Float:position_z
};

new
    PlayerInfo                          [E_PLAYER_DATA][MAX_PLAYERS]
;
On the line it claims a mismatch:

pawn Код:
PlayerInfo[position_x][playerid] = -1431.0; PlayerInfo[position_y][playerid] = -284.0; PlayerInfo[position_z][playerid] = -15.0;
Код:
C:\Users\Aleksander.Family-PC\Desktop\samp03dsvr_R2_win32\gamemodes\rp.pwn(176) : warning 213: tag mismatch



Re: Tag mismatch - Jefff - 19.02.2012

Must be
new PlayerInfo[MAX_PLAYERS][E_PLAYER_DATA];


Re: Tag mismatch - Jack_Wilson - 19.02.2012

Thanks mate, repped.