Reload

From Sinden Lightgun
Revision as of 10:29, 7 December 2022 by Admin (talk | contribs) (Created page with "frameless|460x460px Reload is a realistic weapons and tactics trainer for one to four players that also happens to be a super fun, super fast playi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Reload banner.png

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.

https://youtu.be/u0mhn8M8ccY

You can use an Autohotkey AHK script to remap the buttons.

;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
;========================================================================================