PHP Code:
Strip_User_C4( id )
{
new fwd = register_forward(FM_SetModel, "C4_Drop_SetModel", true)
engclient_cmd(id, "drop", "weapon_c4")
unregister_forward(FM_SetModel, fwd, true)
}
public C4_Drop_SetModel( ent , model[] )
{
if( !equal(model, "model/weaponbox.mdl") )
{
dllfunc(DLLFunc_Think, ent)
}
}
__________________