goldsrc-cheat/src/hooks.c

21 lines
369 B
C
Raw Normal View History

#include "include/hooks.h"
#include "include/sdk.h"
#include "include/globals.h"
#include "features/include/movement.h"
DECL_HOOK(CL_CreateMove);
bool hooks_init(void) {
HOOK(i_client, CL_CreateMove);
return true;
}
void h_CL_CreateMove(float frametime, usercmd_t* cmd, int active) {
ORIGINAL(CL_CreateMove, frametime, cmd, active);
bhop(cmd);
}