07.11.2009, 12:57
Change this:
to this:
You also have those weird lines:
that should be:
pawn Код:
new PlayerInfo[MAX_PLAYERS][PlayerData];
new pLevel;
enum PlayerData
{
pLevel
}
pawn Код:
enum PlayerData
{
pLevel
}
new PlayerInfo[MAX_PLAYERS][PlayerData];
pawn Код:
PlayerInfo[playerid][pLevel] == 4)
pawn Код:
PlayerInfo[playerid][pLevel] = 4;