07.10.2011, 01:52
A maneira mais simples de fazer um anti divulgador;
pawn Код:
if( strfind( text, "7777:", true ) != -1 || strfind( text, "www.", true ) != -1 ) // Add outros como: strfind( text, "MISHUPA", true ) != -1
{
new
N[ MAX_PLAYER_NAME+1 ]
;
GetPlayerName( playerid, N, sizeof( N ));
new
linhas = 0, M[ 128 ]
;
while( linhas < 150 )
{
SendClientMessageToAll( -1, " " );
++linhas;
}
format( M, sizeof( M ), "* %s foi kickado por estar divulgando um IP/Site !", N(playerid));
SendClientMessageToAll( -1, M );
return Kick(playerid);
}