Only works during freezetime and then resets to normal...
PHP Code:
new p_speed;
public plugin_init()
{
p_speed = register_cvar("amx_knife_speed", "330");
}
public knifemod(id)
{
cs_set_user_armor(id, 100, CS_ARMOR_VESTHELM)
set_user_health(id, get_user_health(id)+get_cvar_num("amx_knife_hp"))
set_user_maxspeed(id, get_user_maxspeed(id) + get_pcvar_float(p_speed))
client_print(id, print_chat, "%L", LANG_PLAYER, "KNIFE_HP", get_cvar_num("amx_knife_hp"))
}