Maybe like this:
Code:
public plugin_init() {
register_forward( FM_SetModel, "hook_SetModel_post", 1 )
}
public hook_SetModel_post( ent, const szMdl[] ){
if( equali( szMdl, "models/w_grenade.mdl" ) )
{
// if HE_grenade do something
}
}
greetz regalis
__________________