-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.py
95 lines (90 loc) · 2.37 KB
/
config.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
class Config:
aimbot = {
"enable": False,
"only_visible": False,
"draw_fov": False,
"key": "shift",
"fov": 10,
"smooth": 0,
"distance": 5000
}
trigger = {
"enable": False,
"target_chicken": False,
"key": "none",
"delay": 0.05
}
esp = {
"enemy": {
"bone": {
"enable": False,
"color": {"r": 28, "g": 182, "b": 230, "a": 255},
"thick": 1
},
"line": {
"enable": False,
"color": {"r": 161, "g": 131, "b": 39, "a": 255},
"thick": 1
},
"box": {
"enable": False,
"color": {"r": 58, "g": 202, "b": 63, "a": 255},
"style": "normal"
},
"name": {
"enable": False,
"color": {"r": 255, "g": 255, "b": 255, "a": 255}
},
"weapon": {
"enable": False,
"color": {"r": 219, "g": 23, "b": 23, "a": 255}
},
"health": {
"enable": False
},
"armor": {
"enable": False
}
},
"friend": {
"bone": {
"enable": False,
"color": {"r": 28, "g": 182, "b": 230, "a": 255},
"thick": 1
},
"line": {
"enable": False,
"color": {"r": 161, "g": 131, "b": 39, "a": 255},
"thick": 1
},
"box": {
"enable": False,
"color": {"r": 58, "g": 202, "b": 63, "a": 255},
"style": "normal"
},
"name": {
"enable": False,
"color": {"r": 255, "g": 255, "b": 255, "a": 255}
},
"weapon": {
"enable": False,
"color": {"r": 219, "g": 23, "b": 23, "a": 255}
},
"health": {
"enable": False
},
"armor": {
"enable": False
}
}
}
crosshair = {
"enable": False,
"color": {"r": 219, "g": 30, "b": 83, "a": 255}
}
misc = {
"ignore_team": False
}
config = {
"slot": "slot1"
}