|
|
@ -20,7 +20,7 @@ ToggleFullAuto(Index) { |
|
|
|
FullAutoEnabled[Index] := !FullAutoEnabled[Index] |
|
|
|
EnabledDisabled := (FullAutoEnabled[Index] ? "enabled" : "disabled") |
|
|
|
if (Index == 5) { |
|
|
|
ToolTip "Auto jump " EnabledDisabled, A_ScreenWidth // 2, A_ScreenHeight // 2 |
|
|
|
ToolTip "Distruptive macros " EnabledDisabled, A_ScreenWidth // 2, A_ScreenHeight // 2 |
|
|
|
} else { |
|
|
|
ToolTip "Full Auto " EnabledDisabled " for " Index, A_ScreenWidth // 2, A_ScreenHeight // 2 |
|
|
|
} |
|
|
@ -56,12 +56,29 @@ RemoveTooltip() { |
|
|
|
#HotIf (GetKeyState("CapsLock","T") and FullAutoEnabled[EquipState]) |
|
|
|
*LButton::Repeat("LButton",,"LButton") |
|
|
|
|
|
|
|
; Hold space rapidly jumps |
|
|
|
; |
|
|
|
; Distruptive macros |
|
|
|
; |
|
|
|
#HotIf FullAutoEnabled[5] |
|
|
|
|
|
|
|
; Hold space rapidly jumps |
|
|
|
*Space::Turbo("Space") |
|
|
|
|
|
|
|
; Hold f to rapidly deposit |
|
|
|
*f::{ |
|
|
|
While GetKeyState("f","P") { |
|
|
|
Send "{Blind}{e down}" |
|
|
|
Sleep 20 |
|
|
|
Send "{Blind}{LCtrl down}" |
|
|
|
Sleep 20 |
|
|
|
Send "{Blind}{LCtrl up}{e up}" |
|
|
|
Sleep 20 |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
; |
|
|
|
; Other |
|
|
|
; Non-disruptive macros |
|
|
|
; |
|
|
|
#HotIf |
|
|
|
|
|
|
|