31.01.2010, 13:10
Agreed. I ban them too, as most of them are completely retarded spammers. Though I made a stock to check if an IP is mentioned in a message:
pawn Код:
stock AdvertisementCheck( string[ ] )
{
new count;
for( new i = 0; i < strlen( string ); i++)
{
if( strfind( string[ i ], ".", true ) )
{
count++;
}
}
if( count == 3 )
{
if( strfind( string, ":", true ) )
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}