Hide IP address in my server
#10

a quick sketch

Код:
public OnPlayerText(playerid, text[])
{
  if (StringContainsIP(text)
    return 0;

  return 1;
}

stock StringContainsIP(string[])
{
  new dotcount= 0;

  for (new i = 0; i < sizeof(string); i++)
    if (string[i] == '.')
      dotcount++;
    
  if (dotcount >= 3 && strfind(string,":", true) > -1) // 3 dots and a :
    return 1;

  return 0;
}
Reply


Messages In This Thread
Hide IP address in my server - by tatane_speed - 11.02.2009, 11:00
Re: Hide IP address in my server - by Mikep - 11.02.2009, 11:07
Re: Hide IP address in my server - by SuperS0nic - 11.02.2009, 11:13
Re: Hide IP address in my server - by tatane_speed - 11.02.2009, 12:00
Re: Hide IP address in my server - by Mikep - 11.02.2009, 12:02
Re: Hide IP address in my server - by SuperS0nic - 11.02.2009, 12:18
Re: Hide IP address in my server - by SilentMouse - 11.02.2009, 12:34
Re: Hide IP address in my server - by SuperS0nic - 11.02.2009, 12:45
Re: Hide IP address in my server - by ShizNator - 11.02.2009, 12:52
Re: Hide IP address in my server - by [RP]Rav - 11.02.2009, 13:10

Forum Jump:


Users browsing this thread: 1 Guest(s)