Quote:
Originally Posted by benamo6
Is this okay?
|
No, and you don't need to force any animation, the game will do it for you.
PHP Code:
#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>
new const VERSION[] = "0.0.1"
public plugin_init()
{
register_plugin("No SlowDown", VERSION, "ConnorMcLeod")
RegisterHam(Ham_Player_Jump, "player", "Ham_CbasePlayer_Jump_Post", 1)
}
public Ham_CbasePlayer_Jump_Post( id )
{
set_pev(id, pev_fuser2, 0.0)
}
It seems you also want autobhop :
PHP Code:
#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>
new const VERSION[] = "0.0.1"
public plugin_init()
{
register_plugin("No SlowDown", VERSION, "ConnorMcLeod")
RegisterHam(Ham_Player_Jump, "player", "Ham_CbasePlayer_Jump_Post", 1)
}
public Ham_CbasePlayer_Jump_Post( id )
{
set_pev(id, pev_fuser2, 0.0)
set_pev(id, pev_oldbuttons, pev(id, pev_oldbuttons) & ~IN_JUMP)
}
__________________