forked from Richard857/BadRotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbindings.xml
16 lines (14 loc) · 932 Bytes
/
bindings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Bindings>
<Binding name="Burst Rotation" description="Hold to use burst rotation" header="BADBOY" runOnUp="true" category="BadBoy">
if keystate == "down" then burst = true; else burst = nil; end
</Binding>
<Binding name="Force Heal" description="Hold to use force healing" runOnUp="true" category="BadBoy">
if keystate == "down" then forceHeal = true; else forceHeal = nil; end
</Binding>
<Binding name="Rotation Toggle" description="Hold to use toggle rotation" runOnUp="true" category="BadBoy">
if keystate == "down" then customToggle = true; toggleKey = "Rotation"; UpdateToggle("Rotation",0.25); else customToggle = nil; toggleKey = nil; end
</Binding>
<Binding name="Start/Stop Toggle" description="Hold to use toggle rotation" runOnUp="true" category="BadBoy">
if keystate == "down" then mainButton:Click(); end
</Binding>
</Bindings>