Difference between revisions of "Prohibition 1930"

From Sinden Lightgun
Jump to navigation Jump to search
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
Prohibition 1930 is a free to download and play game, Its set in Chicago during prohibition and plays much like Time Crisis.
+
{{infobox
 +
|title = Prohibition 1930
 +
|logo = Prohibition1930_logo.png
 +
|category = Indie Game
 +
|download = [https://www.gametop.com/download-free-games/prohibition-1930/ Gametop]
 +
|license = Free
 +
|release = 24 Feb, 2015
 +
|type = Shooter
 +
|developer = Game Pulp
 +
|players = 1 Player
 +
|titleshot = Prohibition1930_Title.png
 +
|gameplayshot = Prohibition1930_gameplay.jpg
 +
|gamename = Prohibition 1930
 +
|note = AHK script required
 +
}}
 +
Prohibition 1930 is a free to download and play game, it's set in Chicago during prohibition and plays much like Time Crisis.
 +
==Download==
 +
Download the game from [https://www.gametop.com/download-free-games/prohibition-1930/ Gametop]
  
== Setup Guide. ==
+
Download no-crosshair patch from [https://www.mediafire.com/file/ne2b2aoiarotajh/prohibition_1930_no_crosshair_patch.rar/file Mediafire]
[https://www.gametop.com/download-free-games/prohibition-1930/ Download the game for free].
 
  
 +
Download AutoHotkey from the [https://www.autohotkey.com/ official website]
  
 
+
== Setup Guide ==
Once its installed to effectively play it with your gun you will need to use AHK to rebind a few buttons.
+
===No Crosshair===
 +
You can also optionally install a no crosshair patch which you will find above. To do so you simply extract the files inside the zip file and overwrite the files in the games main directory wrapgame_data folder.
 +
===AHK Script===
 +
Once its installed to effectively play it with the lightgun you will need to use AHK to rebind a few buttons
  
 
To do so use the example AHK script bellow and edit the file paths and key binds to suit your needs.
 
To do so use the example AHK script bellow and edit the file paths and key binds to suit your needs.
  
 
+
Example AHK script:
You can also optionally install a no crosshair patch which you will find bellow.
+
<syntaxhighlight lang="ahk">
 
 
To do so you simply extract the files inside the zip file and overwrite the files in the games main directory wrapgame_data folder.
 
 
 
Download Auto Hot Key [https://www.autohotkey.com/ HERE]
 
 
 
Download no-crosshair patch: [https://www.mediafire.com/file/ne2b2aoiarotajh/prohibition_1930_no_crosshair_patch.rar/file HERE]
 
 
 
Example AHK script:<syntaxhighlight lang="ahk">
 
 
SetWorkingDir C:\YOUR DIR HERE\Prohibition 1930  
 
SetWorkingDir C:\YOUR DIR HERE\Prohibition 1930  
 
Run, "C:\YOUR DIR HERE\Prohibition 1930\wrapgame.exe"  
 
Run, "C:\YOUR DIR HERE\Prohibition 1930\wrapgame.exe"  

Latest revision as of 19:29, 2 February 2023



Indie Game
Download: Gametop
License: Free
Game info
Developer: Game Pulp
Released: 24 Feb, 2015
Players: 1 Player
Type: Shooter
Prohibition1930 Title.png
Prohibition1930 gameplay.jpg
Note: AHK script required

Prohibition 1930 is a free to download and play game, it's set in Chicago during prohibition and plays much like Time Crisis.

Download

Download the game from Gametop

Download no-crosshair patch from Mediafire

Download AutoHotkey from the official website

Setup Guide

No Crosshair

You can also optionally install a no crosshair patch which you will find above. To do so you simply extract the files inside the zip file and overwrite the files in the games main directory wrapgame_data folder.

AHK Script

Once its installed to effectively play it with the lightgun you will need to use AHK to rebind a few buttons

To do so use the example AHK script bellow and edit the file paths and key binds to suit your needs.

Example AHK script:

SetWorkingDir C:\YOUR DIR HERE\Prohibition 1930 
Run, "C:\YOUR DIR HERE\Prohibition 1930\wrapgame.exe" 
(YOUR KEYBIND HERE FOR HIDE)::space 
(YOUR KEYBIND HERE FOR BULLET TIME)::t 

RButton::r 
WheelUpDown:                            
Send,{WheelDown 1}    

Return (YOUR KEYBIND HERE FOR EXIT)::    
Process,Close,wrapgame.exe    
Run,taskkill /im "wrapgame.exe" /F    
ExitApp 
return