2023-07-21 13:44:18 +02:00
|
|
|
|
|
|
|
|
#include "include/cvars.h"
|
|
|
|
|
#include "include/sdk.h"
|
|
|
|
|
#include "include/globals.h"
|
|
|
|
|
|
|
|
|
|
DECL_CVAR(bhop);
|
2023-07-23 15:38:43 +02:00
|
|
|
DECL_CVAR(autostrafe);
|
2023-07-29 16:24:59 +02:00
|
|
|
DECL_CVAR(aimbot);
|
2023-07-31 18:03:26 +02:00
|
|
|
DECL_CVAR(autoshoot);
|
2023-07-21 15:49:01 +02:00
|
|
|
DECL_CVAR(esp);
|
2023-07-24 17:03:06 +02:00
|
|
|
DECL_CVAR(chams);
|
2023-07-26 22:02:01 +02:00
|
|
|
DECL_CVAR(crosshair);
|
2023-07-31 15:54:47 +02:00
|
|
|
DECL_CVAR(tracers);
|
2023-07-25 22:10:26 +02:00
|
|
|
DECL_CVAR(clmove);
|
2023-09-19 10:38:01 -04:00
|
|
|
DECL_CVAR(watermark);
|
2023-07-25 22:10:26 +02:00
|
|
|
|
2023-07-21 13:44:18 +02:00
|
|
|
bool cvars_init(void) {
|
2023-07-29 16:27:01 +02:00
|
|
|
REGISTER_CVAR(bhop, 1);
|
2023-09-19 10:38:01 -04:00
|
|
|
REGISTER_CVAR(autostrafe, 1);
|
2023-07-29 17:35:17 +02:00
|
|
|
REGISTER_CVAR(aimbot, 0);
|
2023-07-31 18:03:26 +02:00
|
|
|
REGISTER_CVAR(autoshoot, 0); /* Only works with aimbot enabled */
|
2023-07-29 16:27:01 +02:00
|
|
|
REGISTER_CVAR(esp, 3);
|
|
|
|
|
REGISTER_CVAR(chams, 1);
|
|
|
|
|
REGISTER_CVAR(crosshair, 0);
|
2023-09-19 10:38:01 -04:00
|
|
|
REGISTER_CVAR(tracers, 1);
|
2023-07-29 16:27:01 +02:00
|
|
|
REGISTER_CVAR(clmove, 0);
|
2023-09-19 10:38:01 -04:00
|
|
|
REGISTER_CVAR(watermark, 1);
|
2023-07-25 22:10:26 +02:00
|
|
|
|
2023-07-21 13:44:18 +02:00
|
|
|
return true;
|
|
|
|
|
}
|