Hello guys :p
I have doing this plugin wich do not work :
Code:
#include < amxmodx >
#include < engine >
public plugin_init( )
{
register_plugin( "remove Flashbang" , "1.0" , "Aooka" );
register_event( "HLTV" , "evNewRound" , "be" );
}
public evNewRound( )
{
new const iEnt = find_ent_by_class( - 1 , "flashbang" );
while( iEnt < 0 )
remove_entity( iEnt );
}
It's just to remove all the flashbang on the ground at the begining of all the round.
Someone have an idears ?
__________________