21.06.2009, 08:38
maybe something as this:
you can't set the value of array in the way you did, you need to create a loop, and set every slot of the array to the value.
pawn Код:
new Level[MAX_PLAYERS];
public OnGameModeInit()
{
for(new i=0; i<MAX_PLAYERS; i++) Level[i] = 1;
}