Files
goldsrc-cheat/src/cvars.c
8dcc 5321ee311e Revert cv_chams settings
Remove FRIEND_CHAMS and ENEMY_CHAMS, that way PLAYER_CHAMS always
displays both teams
2023-07-27 21:39:01 +02:00

23 lines
544 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);
DECL_CVAR(crosshair);
DECL_CVAR(clmove);
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");
cv_crosshair = REGISTER_CVAR("crosshair", "0");
cv_clmove = REGISTER_CVAR("clmove", "0");
return true;
}