26.04.2011, 22:04
Is some one put an IP in the main chat send this:
xxx.xxx.xxx.xxx
Number : x
xxx.xxx.xxx.xxx
Number : x
stock detectIP(text[])
{
new
dotCount
;
for(new i; text[i] != 0; ++i)
{
if('0' <= text[i] <= '9')
{
do
{
if(text[i] == '.') ++dotCount;
++i;
}
while(('0' <= text[i] <= '9') || text[i] == '.' || text[i] == ':');
}
else dotCount = -1;
}
return (dotCount > 2);
}