Can you edit that ConnorMcLeod's mod not to slow you down auto bhop? :
PHP Code:
#include <amxmodx>
#include <engine>
#include <hamsandwich>
public plugin_init()
{
register_plugin( "Auto Bhop", "0.0.1", "ConnorMcLeod" )
RegisterHam( Ham_Player_Jump, "player", "Player_Jump" )
}
public Player_Jump(id)
{
static iOldbuttons ; iOldbuttons = entity_get_int( id, EV_INT_oldbuttons )
if( iOldbuttons & IN_JUMP )
{
entity_set_int( id, EV_INT_oldbuttons, iOldbuttons & ~IN_JUMP )
}
}