29.06.2012, 13:11
Hello.
I want a cmd which will unban a player ip.Can anyone please give me?
I want a cmd which will unban a player ip.Can anyone please give me?
COMMAND:unbanip(playerid, params[])
{
new ip[16];
if(sscanf(params, "s[16]", ip)) return SendClientMessage(playerid, -1, "USAGE: /unbanip [ip]");
new string[256];
format(string, sizeof string, "unbanip %s", ip);
SendRconCommand(string);
return 1;
}