08.01.2015, 12:47
I have a little problem.
The commands looks good to me. So here's the problem:
No matter what level i am it says "You're not authorized to use that command"
Here is my command.
The commands looks good to me. So here's the problem:
No matter what level i am it says "You're not authorized to use that command"
Here is my command.
PHP код:
CMD:acmds(playerid, params[])
{
if(pInfo[playerid][Adminlevel] == 1) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "{FFFF33}TRIAL ADMINISTRATOR COMMANDS\n/kick, /clearc, /setskin", "OK", "Exit");
}
if(pInfo[playerid][Adminlevel] == 2) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "{00CC00}MODERATOR COMMANDS\n/ban", "OK", "Exit");
}
if(pInfo[playerid][Adminlevel] == 3) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "{99CCFF}ADMIN COMMANDS\n/pheal", "OK","EXIT");
}
if(pInfo[playerid][Adminlevel] == 4) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "{FFCCFF}HEAD ADMINISTRATOR COMMANDS\n/akill", "OK","EXIT");
}
if(pInfo[playerid][Adminlevel] == 5) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "","OK","EXIT");
}
if(pInfo[playerid][Adminlevel] == 6) return SendClientMessage(playerid, -1, "{FF0000}Error: You are not authorized to use this command.");
{
ShowPlayerDialog(playerid, -1, DIALOG_STYLE_MSGBOX, "Admin commands", "{FF0000}SERVER OWNER COMMANDS\n/setlevel", "OK", "EXIT");
}
return 1;
}