-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.cpp
42 lines (34 loc) · 798 Bytes
/
config.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
namespace Config {
// Aimbot
bool aimbot = true;
bool aimbot_visible = true;
bool aimbot_norecoil = true;
bool aimbot_autoshoot = false;
bool aimbot_fov = true;
bool aimbot_friendlyfire = false;
float aimbot_fov_value = 100.0f;
// Esp
extern bool esp = true;
extern bool esp_player_list = true;
extern bool esp_player_names = true;
// Chams
bool chams = true;
bool chams_local = true;
bool chams_rgb = false;
float chams_rgb_speed = 0.1f;
float chams_alpha = 0.4f;
// Rendering
bool fix_colors = true;
bool no_fog = true;
bool no_ambient_light = true;
// Speedhack
bool speedhack = false;
float speedhack_multiplier = 0.25f;
// FOV
float fov = 90.0f;
// Misc
bool hear_everyone = false;
bool silent_step = true;
bool anti_tesla = true;
bool noclip = false;
}