speed is reset when the user switches weapons, add this so the speed is set after the weapon switch
PHP Code:
public plugin_init()
{
register_event("CurWeapon", "event_curweapon","be");
}
public event_curweapon(id)
{
if (HasSpeed[ id ])
fm_set_user_maxspeed( id, get_pcvar_float( gSpeedCvar ) );
}
__________________