PHP Kod:
#include <amxmodx>
#include <reapi>
new const PLUGIN[] = "Knife_Gravity";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_event("CurWeapon", "Event_CurWeapon", "be", "1=1");
}
public Event_CurWeapon(ID)
{
switch(get_user_weapon(ID))
{
case CSW_KNIFE : set_entvar(ID, var_gravity, 650.0);
}
}

)


