Needing script for IP exceptions over a Rangeban
#1

Hello,
Are there any scripts that can create an IP exception over a Rangeban, allowing a specific IP that was effected by the rangeban to continue playing the server?

Reply
#2

pawn Code:
public OnPlayerConnect(playerid)
{
  new ip[16];
  GetPlayerIp(playerid,ip,16);
  if(!strcmp(ip,"192.196.",false,8))
  {
    if(strcmp(ip[8],"0.100",false,5))
    if(strcmp(ip[8],"0.101",false,5))
    if(strcmp(ip[8],"0.102",false,5))
    Kick(playerid);
  }
}
Atleast I think so anyway.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)