diff --git a/src/AutorunAutoclick.ahk b/src/AutorunAutoclick.ahk index d262f9e..a2393b8 100644 --- a/src/AutorunAutoclick.ahk +++ b/src/AutorunAutoclick.ahk @@ -15,8 +15,8 @@ ; Hold/Autoclick mouse buttons ; Holds if single click, autoclicks if double click -*!LButton UP::HoldOrRepeat("LButton",["RButton","MButton"]) -*!RButton UP::HoldOrRepeat("RButton",["LButton","MButton"]) +*!LButton UP::HoldOrRepeat("LButton",[]) +*!RButton UP::HoldOrRepeat("RButton",[]) ; Autorun *!w UP::Hold("w",["s"]) diff --git a/src/Orcs Must Die.ahk b/src/Orcs Must Die.ahk new file mode 100644 index 0000000..9420304 --- /dev/null +++ b/src/Orcs Must Die.ahk @@ -0,0 +1,21 @@ +; Script can be directly run by or compiled into an .exe by the open-source software AutoHotkey +; https://www.autohotkey.com + +; +; Front Matter +; + +; Include relevant libraries +#Include ../lib/Prelude.ahk + +; +; Hotkeys +; + +*RButton:: +Send {RButton up} +Sleep 50 +While GetKeyState("RButton","P") { + Send {LButton} +} +return \ No newline at end of file diff --git a/src/Outer Wilds.ahk b/src/Outer Wilds.ahk index 93dc55c..1d615e8 100644 --- a/src/Outer Wilds.ahk +++ b/src/Outer Wilds.ahk @@ -32,6 +32,12 @@ Gui, Show, NoActivate x0 y0, StopwatchGui WinSet, TransColor, Black 100, StopwatchGui StopwatchHide() +; Send an F4 to activate fullscreen +Sleep 1000 +Send {F4 down} +Sleep 100 +Send {F4 up} + ; ; Hotkeys ; @@ -43,6 +49,8 @@ StopwatchHide() ; Alt+F1: Show/Hide stopwatch !F1::StopwatchToggleHidden() +#If StopwatchHidden + ; F1: Reset stopwatch F1::StopwatchReset() @@ -59,6 +67,8 @@ F4::StopwatchFastforward(5) ; Fine Controls ; +#If 1 + ; Reset all axes when capslock is pressed ~CapsLock:: MyXbox.Axes.LY.SetState(50)