Difference between revisions of "BangBang PewPew"
(5 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|title = BangBang PewPew | |title = BangBang PewPew | ||
|logo = Bangbangpewpew-logo.jpg | |logo = Bangbangpewpew-logo.jpg | ||
− | |category = | + | |category = Steam game |
|download = [https://store.steampowered.com/app/1818880/BangBang_PewPew/ Steam page] | |download = [https://store.steampowered.com/app/1818880/BangBang_PewPew/ Steam page] | ||
|license = Commercial | |license = Commercial | ||
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]] | ||
}} | }} | ||
− | BangBang PewPew is a | + | BangBang PewPew is a gallery shooter from Molerat Digital Art Ltd. available in Steam. |
− | + | The developers describe the game as follows: | |
− | 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 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.’’ | ||
+ | <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: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.