Try this:
Code:
public FwdSetModel_Pre( iEnt, szModel[] )
{
if ( g_iCurrentDay == DODGEBALL_DAY && pev_valid( iEnt ) && equal( szModel,"models/w_hegrenade.mdl" ))
{
entity_set_model( iEnt, g_szDodgeballWorldModel );
set_task( 10.0, "RemoveEnt", iEnt );
}
}
__________________