Difference between revisions of "Big Buck Hunter Pro"
Jump to navigation
Jump to search
| (3 intermediate revisions by 2 users not shown) | |||
| Line 8: | Line 8: | ||
|type = Hunting simulator |
|type = Hunting simulator |
||
|developer = Raw Thrills / Play Mechanix |
|developer = Raw Thrills / Play Mechanix |
||
|players = |
|players = 2 Players |
||
|titleshot = BBH-pro-title.png |
|titleshot = BBH-pro-title.png |
||
|gameplayshot = |
|gameplayshot = |
||
|gamename = Big Buck Hunter Pro |
|||
|note = |
|||
|note = Requires TeknoParrot Patreon |
|||
}} |
}} |
||
Inspired by Duck Hunt, the game's goal is to shoot the male animals as they run across the screen. The round ends when a female one is shot. Each scene will begin with a couple of animals walking without any suspicions. After a first shot is done, the animals will begin running and the hunt starts. |
Inspired by Duck Hunt, the game's goal is to shoot the male animals as they run across the screen. The round ends when a female one is shot. Each scene will begin with a couple of animals walking without any suspicions. After a first shot is done, the animals will begin running and the hunt starts. |
||
<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. |
|||
#SingleInstance Force |
|||
Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=BBHPro.xml |
|||
~Esc:: |
|||
Process,Close,TeknoParrotUi.exe |
|||
Run,taskkill /im "TeknoParrotUi.exe" /F |
|||
sleep, 500 |
|||
ExitApp |
|||
return |
|||
</syntaxhighlight> |
|||
[[Category:Arcade Games]] |
[[Category:Arcade Games]] |
||
[[Category:Hunting Games]] |
[[Category:Hunting Games]] |
||
Latest revision as of 19:36, 2 February 2023
Inspired by Duck Hunt, the game's goal is to shoot the male animals as they run across the screen. The round ends when a female one is shot. Each scene will begin with a couple of animals walking without any suspicions. After a first shot is done, the animals will begin running and the hunt starts.
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.
#SingleInstance Force
Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=BBHPro.xml
~Esc::
Process,Close,TeknoParrotUi.exe
Run,taskkill /im "TeknoParrotUi.exe" /F
sleep, 500
ExitApp
return