Skip to main content
  1. Games/

House by barkbarkgames

1 min
Games itch.io

made a simple script for AutoHotkey to those who can’t use arrow keys like me (down button was broken; I use azerty keyboard) Feel free to change the buttons, however don’t use “E”, “A”, “S”, “Q” they are used by the game.o for Up
l for Down
m for Right
k for Left
n for Quick Restart

#Requires AutoHotkey v2.0
wasActive := false
Loop {
    If WinActive(“ahk_exe House.exe”) {
        wasActive := true
        movement := “”
        movement .= GetKeyState(“o”, “P”) ? “{Up down}” : “{Up up}”
        movement .= GetKeyState(“l”, “P”) ? “{Down down}” : “{Down up}”
        movement .= GetKeyState(“m”, “P”) ? “{Right down}” : “{Right up}”
        movement .= GetKeyState(“k”, “P”) ? “{Left down}” : “{Left up}”
        movement .= GetKeyState(“Shift”, “P”) ? “{Shift down}” : “{Shift up}”
        Send(movement)
        n::{ ; for quick Restart, press N
            Send(“{Space}”)
            Sleep 200
            Send(“{Down}”)
            Sleep 200
            Send(“{Down}”)
            Sleep 200
            Send(“a”)
        }
        Sleep 30
    } else if (wasActive) {
        Send(“{Up up}{Down up}{Right up}{Left up}{Shift up}”)
        wasActive := false
    }
    Sleep 30
}
#HotIfCompiling it makes it executable EXE which makes things much easier too

Related

Gimme Friction Baby Playdate Tribute by notpeter
2 mins
Games itch.io
Gratiarum by Vidas Games
1 min
Games itch.io
A Mall Near You by Diesel Rave Studios, smpletan, adriotes, oakey, Narwhix
1 min
Games itch.io
Test Test Test by Mojiken Studio
2 mins
Games itch.io
Lighthouse of the Dead by Skinner Space
1 min
Games itch.io
intertwine by Crescence Studio
2 mins
Games itch.io