Either you use this :
PHP Code:
#include <engine_stocks>
public plugin_init()
{
remove_entity_name("env_explosion")
}
Either this
PHP Code:
#include <engine>
public plugin_init()
{
new iEnt = find_ent_by_class(-1, "env_explosion")
while( iEnt )
{
remove_entity( iEnt )
iEnt = find_ent_by_class(iEnt, "env_explosion")
}
}
__________________