Prasom, irasysi zodzius kuriuos nori, kad blokuotu, bus reklama pvz:
Uzsukite i amxmodx.lt svetaine, .sma faile jau yra parasyta, kad blokuotu .lt , tai jaigu sakinyje bus .lt chate nieko nerodys.
Code: Select all
#include < amxmodx > #pragma semicolon 1 #define PLUGIN "Anti-Reklama"#define VERSION "0.1"#define AUTHOR "agame" new g_clcmd_say[ ][ ] = { "", "say", "say_team" }; new g_block_adverts[ ][ ] ={ "http://", "www.", ".lt", ".eu", ".com", ".net", ".org", ".info", ".biz", ".co", ".us", ".lv", ".ru", "77.", "78.", "79.", "82.", "84.", "87.", "88.", "cs.", "hs.", "91.", "92.", ":27015", ":27016", ":27017", ":27018", ":27019", ":27020"}; public plugin_init( ){ register_plugin( PLUGIN, VERSION, AUTHOR ); new i; for ( i = 1; i < sizeof( g_clcmd_say ); i++ ) register_clcmd( g_clcmd_say[ i ], "clcmd_say" );} public clcmd_say( id ){ new args[ 192 ], i; read_args( args, charsmax( args ) ); for ( i = 0; i < sizeof( g_block_adverts ); i++ ) { if ( containi( args, g_block_adverts[ i ] ) != -1 ) return PLUGIN_HANDLED; } return PLUGIN_CONTINUE;}