-
Notifications
You must be signed in to change notification settings - Fork 0
/
Natty.toml
20 lines (17 loc) · 881 Bytes
/
Natty.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
delay = 5 # Clicker thread delay, in milliseconds (lower delays allow for higher CPS. MaxCPS = 1000 / delay). Default: 5
[[commands]]
listen = { type = "Button", value = "F" } # The key to listen to
action = { type = "Key", value = "space" } # The action to perform (press space)
method = "Toggle" # The listen method. Toggle will alternate between on and off, hold will only click when the key is held
range = { min = 14, max = 18 } # The CPS (clicks per second) range. In this case 14CPS to 18CPS
[[commands]]
listen = { type = "Button", value = "B" }
action = { type = "Button", value = "L" }
method = "Hold"
range = { min = 12, max = 18 }
[[commands]]
listen = { type = "Key", value = "Alt_L" }
action = { type = "Key", value = "space" }
method = "Hold"
# No range means emulate the key. When Alt_L is pressed, space is pressed.
# When Alt_L is released, space is released.