I editted your plugin and glued it into my own. The problem is, that during freezetime it works, but after it - it doesn't
Its a part of the menu... When I open the menu and turn on a function, I want my speed with the knife to be increased (beyond the default speed). Hp and armor work just fine!
PHP Code:
public plugin_init()
{
register_cvar("amx_knife_speed", "330")
}
public knifemod(id)
{
set_user_maxspeed(id, get_user_maxspeed(id)+get_cvar_num("amx_knife_speed"))
}