04.01.2015, 19:26
Replace SendRconCommand("unbanip");*
with
+ You dont need string size of 128, 20 would be fine
//Edit: sorry didnt notice that someone already replied
with
pawn Код:
new str[30];
format(str,sizeof(str),"unbanip %s",ip);
SendRconcommand(str);
//Edit: sorry didnt notice that someone already replied