24.12.2013, 12:27
Ahh , sorry i have edited my post , that was through fast typing re-try that
pawn Код:
dcmd_unban(playerid,params[])
{
if(!strlen(params)) return SendClientMessage(playerid,red,"Syntax Error: /unban <IP>");//syntax if he typed nothing in params.
new ip[16],string[68];//declaring the ip and a new string.
format(string,sizeof(string),"unbanip %s",ip);//formating Rcon command
SendRconCommand(string);//sending the command
SendRconCommand("reloadbans");//reloading ban list.
return 1;
}