Files
goldsrc-cheat/src/cvars.c
8dcc 9fe986306d Add different values for cv_esp
0 - Off
1 - 3D Box
2 - Name
3 - 3D Box + Name
2023-07-24 18:02:05 +02:00

19 lines
400 B
C

#include "include/cvars.h"
#include "include/sdk.h"
#include "include/globals.h"
DECL_CVAR(bhop);
DECL_CVAR(autostrafe);
DECL_CVAR(esp);
DECL_CVAR(chams);
bool cvars_init(void) {
cv_bhop = REGISTER_CVAR("bhop", "1");
cv_autostrafe = REGISTER_CVAR("autostrafe", "0");
cv_esp = REGISTER_CVAR("esp", "3");
cv_chams = REGISTER_CVAR("chams", "1");
return true;
}