Difference between revisions of "Reload"
Line 19: | Line 19: | ||
Buy and download it on [https://store.steampowered.com/app/330370/Reload/ Steam]. | Buy and download it on [https://store.steampowered.com/app/330370/Reload/ Steam]. | ||
− | + | == Setup Guide == | |
+ | To play this game you will need to use demulshooter and a AHK script to remap the default buttons. | ||
− | + | If you dont know how to use demulshooter or AHK check out their relevant pages. | |
+ | |||
+ | Once installed navigate to the games default install directory usually found here: | ||
+ | |||
+ | C:\Program Files (x86)\SteamLibrary\steamapps\common\Reload | ||
+ | |||
+ | |||
+ | Next create a new AHK file and use the code below created by TakuCED, remember to alter the demulshooter directory so it is called correctly and put in the buttons you wish to use. | ||
+ | |||
+ | |||
+ | Once you are finished save the AHK file and run it to play the game! | ||
+ | |||
+ | <syntaxhighlight lang="ahk"> | ||
;https://steamcommunity.com/groups/lightgun-universe | ;https://steamcommunity.com/groups/lightgun-universe | ||
;The script is made by TakuCED, for Sinden Lightgun on Reload Steam version | ;The script is made by TakuCED, for Sinden Lightgun on Reload Steam version |
Revision as of 14:01, 18 December 2022
Reload is a realistic weapons and tactics trainer for one to four players that also happens to be a super fun, super fast playing game. Go through 35+ training scenarios including Hostage Rescue, Sniping, VIP Protection, and Olympic Style Shooting competition.
Reload is a Steam game developed by Top3Line s.r.o. in 2015 that can be played with the Sinden Lightgun.
Buy and download it on Steam.
Setup Guide
To play this game you will need to use demulshooter and a AHK script to remap the default buttons.
If you dont know how to use demulshooter or AHK check out their relevant pages.
Once installed navigate to the games default install directory usually found here:
C:\Program Files (x86)\SteamLibrary\steamapps\common\Reload
Next create a new AHK file and use the code below created by TakuCED, remember to alter the demulshooter directory so it is called correctly and put in the buttons you wish to use.
Once you are finished save the AHK file and run it to play the game!
;https://steamcommunity.com/groups/lightgun-universe
;The script is made by TakuCED, for Sinden Lightgun on Reload Steam version
;the buttons may be different please modify to suit your key parameter.
;version 1.00 - Automatic
;========================================================================================
Run %comspec% /c START steam://rungameid/330370 && timeout /t 10 /nobreak && cd .. && start C:\DEMULSHOOTER DIR GOES HERE\DemulShooter.exe -target=windows -rom=reload
;========================================================================================
#IfWinActive ahk_exe reload.exe
LButton::LButton ;FIRE (Trigger)
RButton::RButton ;RELOAD (Pump Action)
YOUR CHOSEN BUTTON HERE::LShift ;AIM
YOUR CHOSEN BUTTON HERE::Space ;HOLD BREATH
YOUR CHOSEN BUTTON HERE::F ;INTERACT
YOUR CHOSEN BUTTON HERE::f ;INTERACT FIX SCENE 11/21
YOUR CHOSEN BUTTON HERE::Enter ;ENTER
YOUR CHOSEN BUTTON HERE::ESC ;MENU
YOUR CHOSEN BUTTON HERE:: ;FOR EXITING THE GAME
Process,Close,reload.exe
Run,taskkill /im "reload.exe" /F
ExitApp
return
#IfWinActive
;========================================================================================