-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
config.ini
79 lines (68 loc) · 1.6 KB
/
config.ini
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
; https://github.com/vike256/Unibot
; See Unibot Wiki for reference
; Consider donating: https://github.com/vike256#donate
[communication]
; 'none' for winapi, driver for interception, serial for microcontroller COM-port, socket for microcontroller Wi-Fi or ethernet
type = none
; Ignore these 3 if you're using 'none' or 'driver'
ip = 0.0.0.0
port = 50124
com_port = COM1
[screen]
detection_threshold = 3, 3
; HSV color range for target detection
upper_color = 63, 255, 255
lower_color = 58, 210, 80
fov_x = 256
fov_y = 256
aim_fov_x = 256
aim_fov_y = 256
; Maximum screenshots per second, not recommended to go above screen refresh rate
fps = 60
auto_detect_resolution = true
resolution_x = 1920
resolution_y = 1080
[aim]
offset = 0
smooth = 0.0
speed = 1.0
y_speed = 1.0
aim_height = 0.5
[recoil]
mode = move
recoil_x = 0.0
recoil_y = 0.0
max_offset = 100
recover = 0.0
[trigger]
; Base delay for triggerbot
trigger_delay = 0
; Additional random delay, does nothing if trigger_delay is 0
trigger_randomization = 30
trigger_threshold = 8
[rapid_fire]
; Maximum clicks per second sent by Unibot, used for triggerbot and rapidfire
target_cps = 10
[key_binds]
; https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
; F1
key_reload_config = 0x70
; F2
key_toggle_aim = 0x71
; F3
key_toggle_recoil = 0x72
; F4
key_exit = 0x73
; Mouse 4
key_trigger = 0x06
; Mouse5
key_rapid_fire = 0x05
; Mouse1 & Mouse2
aim_keys = 0x01, 0x02
[debug]
; Show a debug screen
enabled = true
; Refresh debug screen even if cheats are off
always_on = true
; 'game' shows actual screen, 'mask' shows what opencv sees
display_mode = mask