I can hold a dodgeball and see other players have the dodgball but when we throw the dodgeball it becomes a hegrenade in air and then just lay on the ground.
I have tried Everything to make the w_hegrenade turn into a w_dodgeball but it just dosn't work.
PHP Code:
public think_grenade(ent)
{
new model[32];
entity_get_string(ent, EV_SZ_model, model, 31)
if(equali(model,"models/OGDaysMenu/w_dodgeball.mdl"))
{
return PLUGIN_CONTINUE
}
// stop grenade from blowing up
return PLUGIN_HANDLED
}