Night Trap – 25th Anniversary Edition Guide

Change Scenes with Keyboard Keys (AutoHotkey) for Night Trap - 25th Anniversary Edition

Change Scenes with Keyboard Keys (AutoHotkey)

Overview

This guide will show you how to use AutoHotKey (software) to change scenes using your keyboard instead of clicking the scene.AutoHotKey is a freeware script and macro platform, with many varied uses and applications. You can download it here[www.autohotkey.com] [ www.autohotkey.com ]. From its endless number of tools and usage, all we’re going to need is a simple hotkey assignment.AHK isn’t a GUI-oriented software. Installing it won’t bring up a nifty window to record and save macros or scripts, but rather make your computer able to recognize and run .ahk files.

Requirements

This script requires you play at 1920×1080 resolution, full screen (not windowed) with mouse controls enabled. This will not work on other resolutions, but can be made to work by changing the X/Y number coordinates for each room yourself.

Do not attempt to load multiple UI variants at once – please Exit the script before using one for a different UI.

The Script (1992 UI)

Once AutoHotkey is installed, open Notepad on your computer (search start menu for “Notepad”). Copy and paste the following script if you are using 1992 UI;

; 1992 COORDINATES HALL1x := 955, HALL1y := 806 KITCHENx := 1095, KITCHENy := 794 ENTRYWAYx := 1226, ENTRYWAYy := 790 LIVINGROOMx := 1369, LIVINGROOMy := 799 BATHROOMx := 987, BATHROOMy := 893 BEDROOMx := 1079, BEDROOMy := 925 HALL2x := 1215, HALL2y := 912 DRIVEWAYx := 1370, DRIVEWAYy := 912 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Escape:: ExitApp Return F12::Suspend, Toggle #IfWinActive Night Trap – 25th Anniversary Edition SetKeyDelay -1 setmousedelay -1 SetBatchLines -1 Suspend, on a:: Send {Click %HALL1x% %HALL1y%} Return s:: Send {Click %KITCHENx% %KITCHENy%} Return d:: Send {Click %ENTRYWAYx% %ENTRYWAYy%} Return f:: Send {Click %LIVINGROOMx% %LIVINGROOMy%} Return z:: Send {Click %BATHROOMx% %BATHROOMy%} Return x:: Send {Click %BEDROOMx% %BEDROOMy%} Return c:: Send {Click %HALL2x% %HALL2y%} Return v:: Send {Click %DRIVEWAYx% %DRIVEWAYy%} Return Escape:: ExitApp Return

Save it as “1992 UI.ahk” on your desktop and open it. You should see an icon appear in your system tray (next to your date and time) to show to that the script is running. Right-clicking on the icon will allow you to Exit the script when you’re done. You can also close the script by pressing the Escape key on your keyboard.

The Script (1993 or 1994 UI)

Once AutoHotkey is installed, open Notepad on your computer (search start menu for “Notepad”). Copy and paste the following script if you are using 1993 or 1994 UI;

; 1993 and 1994 COORDINATES HALL1x := 366, HALL1y := 802 KITCHENx := 492, KITCHENy := 790 ENTRYWAYx := 622, ENTRYWAYy := 798 LIVINGROOMx := 755, LIVINGROOMy := 783 BATHROOMx := 366, BATHROOMy := 926 BEDROOMx := 488, BEDROOMy := 924 HALL2x := 614, HALL2y := 941 DRIVEWAYx := 741, DRIVEWAYy := 936 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Escape:: ExitApp Return F12::Suspend, Toggle #IfWinActive Night Trap – 25th Anniversary Edition SetKeyDelay -1 setmousedelay -1 SetBatchLines -1 Suspend, on a:: Send {Click %HALL1x% %HALL1y%} Return s:: Send {Click %KITCHENx% %KITCHENy%} Return d:: Send {Click %ENTRYWAYx% %ENTRYWAYy%} Return f:: Send {Click %LIVINGROOMx% %LIVINGROOMy%} Return z:: Send {Click %BATHROOMx% %BATHROOMy%} Return x:: Send {Click %BEDROOMx% %BEDROOMy%} Return c:: Send {Click %HALL2x% %HALL2y%} Return v:: Send {Click %DRIVEWAYx% %DRIVEWAYy%} Return Escape:: ExitApp Return

Save it as “1993 1994 UI.ahk” on your desktop and open it. You should see an icon appear in your system tray (next to your date and time) to show to that the script is running. Right-clicking on the icon will allow you to Exit the script when you’re done. You can also close the script by pressing the Escape key on your keyboard.

The Script (2017 UI)

Once AutoHotkey is installed, open Notepad on your computer (search start menu for “Notepad”). Copy and paste the following script if you are using 2017 UI;

; 2017 COORDINATES HALL1x := 591, HALL1y := 851 KITCHENx := 652, KITCHENy := 856 ENTRYWAYx := 737, ENTRYWAYy := 845 LIVINGROOMx := 817, LIVINGROOMy := 852 BATHROOMx := 574, BATHROOMy := 906 BEDROOMx := 665, BEDROOMy := 915 HALL2x := 736, HALL2y := 924 DRIVEWAYx := 820, DRIVEWAYy := 910 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Escape:: ExitApp Return F12::Suspend, Toggle #IfWinActive Night Trap – 25th Anniversary Edition SetKeyDelay -1 setmousedelay -1 SetBatchLines -1 Suspend, on a:: Send {Click %HALL1x% %HALL1y%} Return s:: Send {Click %KITCHENx% %KITCHENy%} Return d:: Send {Click %ENTRYWAYx% %ENTRYWAYy%} Return f:: Send {Click %LIVINGROOMx% %LIVINGROOMy%} Return z:: Send {Click %BATHROOMx% %BATHROOMy%} Return x:: Send {Click %BEDROOMx% %BEDROOMy%} Return c:: Send {Click %HALL2x% %HALL2y%} Return v:: Send {Click %DRIVEWAYx% %DRIVEWAYy%} Return

Save it as “2017 UI.ahk” on your desktop and open it. You should see an icon appear in your system tray (next to your date and time) to show to that the script is running. Right-clicking on the icon will allow you to Exit the script when you’re done. You can also close the script by pressing the Escape key on your keyboard.

In-Game Usage

Press F12 to pause/unpause script. To exit script, press Escape – OR – right-click the AutoHotkey icon in your system tray and select Exit.

Once in-game, use the letters A S D F and Z X C V to switch between scenes instantly. The layout will follow this simple pattern;


Please remember that Q currently quits the game, so watch your fingers!

SteamSolo.com