25.02.2015, 15:37
PHP код:
CMD:unbanip(playerid, params[])
{
if(PlayerInfo[playerid][Level] >= 2) {
new
ip[48],string[64],String[27];
if(sscanf(params, "s[48]",ip)) return SendClientMessage(playerid, red, "USAGE: /unbanip [ip]");
format(string,sizeof(string),"unbanip %s",ip);
SendRconCommand(string);
SendRconCommand("reloadbans");
format(String, sizeof(String),"You Have Unbanned IP: %s", ip);
SendClientMessage(playerid, -1, String);
return 1;
} else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command");
}

