11.10.2017, 14:27
Quote:
Update your sscanf2 to the latest version, that should fix your issue. The sscanf part is ok. I had the same issue when I was using some older sscanf2.
|
Then it looks like this player is either rank 0 or rank 1.
If he is rank 1 and you wan to allow him to use the command do this:
if(PlayerInfo[playerid][pAdmin] > 1)
change to
if(PlayerInfo[playerid][pAdmin] >= 1)