09.10.2016, 00:53
Код:
stock CheckAdmin(playerid) { if(playerVariables[playerid][pAdminLevel] == 0) return SCM(playerid, -1, AdminOnly); return 1; }
However, when I use this stock in a command, it returns the "AdminOnly" message, but it won't cancel the command to be run.
How could I fix this? I've tried doing return 0 instead of return 1, but that didn't work either.