Compare commits

...

4 Commits

  1. 8
      scripts/Stardew Valley.ahk
  2. 33
      scripts/Subnautica Below Zero.ahk

8
scripts/Stardew Valley.ahk

@ -9,7 +9,7 @@
; Make this a wrapper script
WrapperPath:="steam://rungameid/413150"
WrapperTitleMatchMode:=2
WrapperWindow:="Stardew Valley 1.6.8 - running SMAPI"
WrapperWindow:="Stardew Valley 1.6.15 - running SMAPI"
#Include "../lib/Wrapper.ahk"
;
@ -23,8 +23,4 @@ WrapperWindow:="Stardew Valley 1.6.8 - running SMAPI"
{
Send "{Blind}{LButton}"
}
}
; Alt to hold or repeat mouse buttons
*!LButton UP::HoldOrRepeat("LButton",["LButton","RButton","MButton"])
*!RButton UP::HoldOrRepeat("RButton",["RButton","LButton","MButton"])
}

33
scripts/Subnautica Below Zero.ahk

@ -0,0 +1,33 @@
;
; Front Matter
;
; Include relevant libraries
#Include ../lib/Prelude.ahk
#Include ../lib/HoldRepeat.ahk
WrapperPath:="steam://rungameid/848450"
WrapperWindow:="Subnautica Below Zero"
#Include ../lib/Wrapper.ahk
;
; Hotkeys
;
HoldRepeat_TimerPeriod:=20
; Alt + direction: automove
*!w UP::Hold("w",["w","s"])
*!s UP::Hold("s",["w","s"])
*!a UP::Hold("a",["a","d","w","s"])
*!d UP::Hold("d",["d","a","w","s"])
*!Space UP::Hold("Space",["Space","LShift"])
*!LShift Up::Hold("LShift",["LShift","Space"])
; Alt + mouse key: hold key
*!LButton UP::Hold("LButton",["LButton","RButton","MButton"])
*!RButton UP::Hold("RButton",["RButton","LButton","MButton"])
; Turbo click to break rocks when caps lock on
#HotIf GetKeyState("CapsLock","T")
*LButton::Repeat("LButton",,"LButton")
Loading…
Cancel
Save