From 8c3d12ca301b750fcc59d4109eb1834b89520177 Mon Sep 17 00:00:00 2001 From: mar Date: Thu, 1 Feb 2024 18:20:32 -0500 Subject: [PATCH] add quick deposit --- src/Deep Rock Galactic.ahk | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/Deep Rock Galactic.ahk b/src/Deep Rock Galactic.ahk index cdedea2..a4eb30c 100644 --- a/src/Deep Rock Galactic.ahk +++ b/src/Deep Rock Galactic.ahk @@ -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