15.10.2018, 12:16
Because you used the wrong if-else;
Код:
COMMAND:cmdspy(playerid, params[]) { if(playerData[playerid][playerLevel] >= 6) { if(playerData[playerid][playercspy]) { playerData[playerid][playercspy] = false; SendClientMessage(playerid, COLOR_WHITE, "{FFFF00} You are now spying on commands."); } else { playerData[playerid][playercspy] = true; SendClientMessage(playerid, COLOR_WHITE, "{FFFF00} You are no longer spying on commands."); } else { SendClientMessage(playerid, COLOR_RED, "You do not have correct permissions to use this command."); } } return 1; }
Код:
COMMAND:cmdspy(playerid, params[]) { if(playerData[playerid][playerLevel] >= 6) { if(playerData[playerid][playercspy]) { playerData[playerid][playercspy] = false; SendClientMessage(playerid, COLOR_WHITE, "{FFFF00} You are now spying on commands."); } else { playerData[playerid][playercspy] = true; SendClientMessage(playerid, COLOR_WHITE, "{FFFF00} You are no longer spying on commands."); } } else { SendClientMessage(playerid, COLOR_RED, "You do not have correct permissions to use this command."); } return 1; }