11.05.2014, 14:23
enum should be above the declaration of the array and the names do not match.
pawn Код:
enum PlayerInfo
{
Logged,
Level
};
new PInfo[MAX_PLAYERS][PlayerInfo];
// Code below that uses PInfo..