Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(2 edits)

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

}

#HotIf

Compiling it makes it executable EXE which makes things much easier too