05.06.2014, 04:35
Here you go mate.
pawn Код:
stock AddBan(playerid)
{
new string[24];
new File:ban = fopen("ban.cfg", io_append);
format(string, sizeof(string), "%s\r\n", RPIP(playerid));
fwrite(ban, string);
fclose(ban);
}

