Difference between revisions of "BangBang PewPew"
| (2 intermediate revisions by 2 users not shown) | |||
| Line 11: | Line 11: | ||
|titleshot = | |titleshot = | ||
|gameplayshot = Banbangpewpew-gameplay.jpg | |gameplayshot = Banbangpewpew-gameplay.jpg | ||
| + | |gamename = BangBang PewPew | ||
|note = [[Reshade#Games | Reshade settings]] | |note = [[Reshade#Games | Reshade settings]] | ||
}} | }} | ||
| Line 22: | Line 23: | ||
''BangBang PewPew was successfully funded on Kickstarter and is available now on Steam.'' | ''BangBang PewPew was successfully funded on Kickstarter and is available now on Steam.'' | ||
| − | ''BangBang PewPew is built from the ground-up for lightguns and it supports mouse input as well. We strongly recommend a lightgun and it has been tested on the Sinden Lightgun, Aimtrak, AE Lightgun and Gun4IR. | + | ''BangBang PewPew is built from the ground-up for lightguns and it supports mouse input as well. We strongly recommend a lightgun and it has been tested on the Sinden Lightgun, Aimtrak, AE Lightgun and Gun4IR.’’ |
| − | <br> | + | <br> |
| + | |||
| + | === Sample AHK Script === | ||
| + | <syntaxhighlight lang="ahk"> | ||
| + | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
| + | ; #Warn ; Enable warnings to assist with detecting common errors. | ||
| + | SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
| + | SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | ||
| + | |||
| + | Run %comspec% /c START steam://rungameid/1818880 | ||
| + | |||
| + | $Esc:: | ||
| + | Process,Close,Bang Bang Pew Pew.exe | ||
| + | Run,taskkill /im "Bang Bang Pew Pew.exe " /F | ||
| + | sleep, 500 | ||
| + | ExitApp | ||
| + | return | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | ===Level Unlock=== | ||
| + | This feature may or may not work but was available in early versions. | ||
| + | |||
| + | You can enable ‘’Reviewer Mode’’ but pressing `Shift + R` on your keyboard. | ||
| + | You should hear a gunshot after pressing those two buttons and all of the levels will be unlocked. | ||
[[Category:Windows Games]] | [[Category:Windows Games]] | ||
[[Category:Steam Games]] | [[Category:Steam Games]] | ||
Latest revision as of 13:44, 3 May 2023
BangBang PewPew is a gallery shooter from Molerat Digital Art Ltd. available in Steam.
The developers describe the game as follows:
BangBang PewPew is a skill-based lightgun shooter. Large publishers have ignored this genre for years so we are picking up the torch! BangBang PewPew features 25+ lightgun shooting challenges. We have created unique original challenges that push the genre in new directions like infinite running, driving and curling with a gun. We have also updated and redesigned many of the classics: skeet shooting, sport shooting and on-rails combat.
BangBang PewPew was successfully funded on Kickstarter and is available now on Steam.
BangBang PewPew is built from the ground-up for lightguns and it supports mouse input as well. We strongly recommend a lightgun and it has been tested on the Sinden Lightgun, Aimtrak, AE Lightgun and Gun4IR.’’
Sample AHK Script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Run %comspec% /c START steam://rungameid/1818880
$Esc::
Process,Close,Bang Bang Pew Pew.exe
Run,taskkill /im "Bang Bang Pew Pew.exe " /F
sleep, 500
ExitApp
return
Level Unlock
This feature may or may not work but was available in early versions.
You can enable ‘’Reviewer Mode’’ but pressing `Shift + R` on your keyboard. You should hear a gunshot after pressing those two buttons and all of the levels will be unlocked.