Add aimbot cvar
This commit is contained in:
parent
e9f3031ca1
commit
e83dad0409
|
@ -5,6 +5,7 @@
|
|||
|
||||
DECL_CVAR(bhop);
|
||||
DECL_CVAR(autostrafe);
|
||||
DECL_CVAR(aimbot);
|
||||
DECL_CVAR(esp);
|
||||
DECL_CVAR(chams);
|
||||
DECL_CVAR(crosshair);
|
||||
|
@ -13,6 +14,7 @@ DECL_CVAR(clmove);
|
|||
bool cvars_init(void) {
|
||||
cv_bhop = REGISTER_CVAR("bhop", "1");
|
||||
cv_autostrafe = REGISTER_CVAR("autostrafe", "0");
|
||||
cv_aimbot = REGISTER_CVAR("aimbot", "1");
|
||||
cv_esp = REGISTER_CVAR("esp", "3");
|
||||
cv_chams = REGISTER_CVAR("chams", "1");
|
||||
cv_crosshair = REGISTER_CVAR("crosshair", "0");
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
|
||||
DECL_CVAR_EXTERN(bhop);
|
||||
DECL_CVAR_EXTERN(autostrafe);
|
||||
DECL_CVAR_EXTERN(aimbot);
|
||||
DECL_CVAR_EXTERN(esp);
|
||||
DECL_CVAR_EXTERN(chams);
|
||||
DECL_CVAR_EXTERN(crosshair);
|
||||
|
|
Loading…
Reference in New Issue