1-
Change this:
PHP Code:
if(pev(entity, pev_flTimeStepSound) == NADE_TYPE_STRIPBOMB)
stripbomb_explode(entity)
return HAM_SUPERCEDE
To this:
PHP Code:
if(pev(entity, pev_flTimeStepSound) == NADE_TYPE_STRIPBOMB)
{
stripbomb_explode(entity)
return HAM_SUPERCEDE
}
return HAM_IGNORED
Because this is a mistake which sniffer did in his plugin and if you wont fix it then you will experience problems with HE grenades
Read the following if you can understand it:
Basically returning Ham_supercede will cause hamsandwich to prevent other nades from exploding so we only want it to happen when we are exploding the strip bomb
And in the end of the function it is necessary to return Ham_ignored so that if the nade is of different type then hamsandwich will led it explode.
Hope you understand my concept..
2-
If Fry! sees this he will kill you

Bcoz you completely cheated his posting style...!!
3-
The idea of the plugin is cool
__________________