09.10.2017, 18:49
You have to change aAdmin to pAdmin
Can you try with that? (This is the same that @n00blek gave you, I just corrected it)
EDIT: Oh sorry, on other hand, you can simply change this :
- >
PHP код:
enum aInfo
{
aAdmin
}
new PlayerInfo[MAX_PLAYERS][aInfo];
PHP код:
enum aInfo
{
pAdmin
}
new PlayerInfo[MAX_PLAYERS][aInfo];
PHP код:
switch(PlayerInfo[playerid][pAdmin])
PHP код:
switch(PlayerInfo[playerid][aAdmin])

