04.06.2018, 18:55
Have you use 'new' for it? like this
And you didnt declare 'pName' in the enum, it will be an error too.
Correct me if i'm wrong
Код:
enum pInfo //change it from PlayerInfo, cause we use PlayerInfo in 'new'
{
Pass[129],
Adminlevel,
VIPlevel,
Money,
Scores,
Kills,
Duty,
Deaths,
pName[MAX_PLAYER_NAME] //add this, otherwise it will return error too
}
new PlayerInfo[MAX_PLAYERS][pInfo];//Declaring it from pInfo enum, MAX_PLAYERS declare the ID
Код:
format(str,sizeof(str),"%s has kicked %s for %s.", PlayerInfo[playerid][pName], PlayerInfo[id][pName] , reason);

