I don't need the entire plugin, I need to add the code into my own plugin, so that when you enable it from a menu, you'd be given armor, hp and increased run speed.
PHP Code:
public plugin_init()
{
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_cvar_num("amx_knife_speed"))
client_print(id, print_chat, "%L", LANG_PLAYER, "KNIFE_HP", get_cvar_num("amx_knife_hp"))
}