Browse Source

add quick deposit

master
Mar Alegre 1 year ago
parent
commit
8c3d12ca30
  1. 23
      src/Deep Rock Galactic.ahk

23
src/Deep Rock Galactic.ahk

@ -20,7 +20,7 @@ ToggleFullAuto(Index) {
FullAutoEnabled[Index] := !FullAutoEnabled[Index] FullAutoEnabled[Index] := !FullAutoEnabled[Index]
EnabledDisabled := (FullAutoEnabled[Index] ? "enabled" : "disabled") EnabledDisabled := (FullAutoEnabled[Index] ? "enabled" : "disabled")
if (Index == 5) { if (Index == 5) {
ToolTip "Auto jump " EnabledDisabled, A_ScreenWidth // 2, A_ScreenHeight // 2 ToolTip "Distruptive macros " EnabledDisabled, A_ScreenWidth // 2, A_ScreenHeight // 2
} else { } else {
ToolTip "Full Auto " EnabledDisabled " for " Index, A_ScreenWidth // 2, A_ScreenHeight // 2 ToolTip "Full Auto " EnabledDisabled " for " Index, A_ScreenWidth // 2, A_ScreenHeight // 2
} }
@ -56,12 +56,29 @@ RemoveTooltip() {
#HotIf (GetKeyState("CapsLock","T") and FullAutoEnabled[EquipState]) #HotIf (GetKeyState("CapsLock","T") and FullAutoEnabled[EquipState])
*LButton::Repeat("LButton",,"LButton") *LButton::Repeat("LButton",,"LButton")
; Hold space rapidly jumps ;
; Distruptive macros
;
#HotIf FullAutoEnabled[5] #HotIf FullAutoEnabled[5]
; Hold space rapidly jumps
*Space::Turbo("Space") *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 #HotIf

Loading…
Cancel
Save