Jump to content

Happy Halloween with Zombie Big Trouble


Recommended Posts

Posted (edited)

Zombie Big Trouble is a old flash video game good for this spooky days

how to play

you need LosslessScaling for maket fullscreen and use the one i post here, you can play with light gun 🔫 and mouse as well

 

1 run Zombie Big Trouble.exe then window opens and you need to point at zombie_big_trouble.dcr

2 now run LosslessScaling, on top right corner is a button called scale, hit the button and you have 5 sec to bring back the game window and after this 5 sec it will be fullscreen

                                                                                           🎃 🦇  Enjoy 🕷️ 👻

https://qiwi.gg/file/qFkd8769-ZombieBigTrouble

 

https://qiwi.gg/file/9Kkv8074-LosslessScalingv02

 

sddefault.jpg

maxresdefault (1).jpg

hqdefault.jpg

KKKK.png

 

 

KKKKK.png

logo-removebg-preview.png

Edited by S.G.D
Posted

thanks !

do you have a solution with AHK or BAT files to launch game and losslessscaling in same time ?

Posted
10 minutes ago, nosoucy62 said:

thanks !

do you have a solution with AHK or BAT files to launch game and losslessscaling in same time ?

no didn't figure out if you make any script let me know please

Posted
I wanted to know if it is possible to create a script to launch the game then the software at the same time without having to do another action with losslessscaling
Posted (edited)
22 minutes ago, nosoucy62 said:
I wanted to know if it is possible to create a script to launch the game then the software at the same time without having to do another action with losslessscaling

i'm sure it is a way

we need ahk or bat  knowledge to make

script

, so we can use as well in more light gun games i plan to share with you guys

af676115-ddb0-485b-a5d7-a2dda7350ab0_text.gif

Edited by S.G.D
gif
Posted (edited)

An AHK script can launch the game in fullscreen. Note that the Lossless Scaling v02.04 folder should be placed in the root directory of the Zombie Big Trouble folder. and Set the shortcut key for Lossless Scaling v02.04 to F1


; 定义程序路径
losslessScalingPath := "Lossless Scaling v02.04\LosslessScaling.exe"
zombieGamePath := "Zombie Big Trouble.exe"
dcrFilePath := "zombie_big_trouble.dcr"

; 打开 LosslessScaling.exe
Run, %losslessScalingPath%
; 等待 LosslessScaling 完全启动
Sleep, 500

; 打开 Zombie Big Trouble.exe
Run, %zombieGamePath%
; 等待 Zombie Big Trouble 完全启动
Sleep, 1000


; 输入文件路径
Send, %dcrFilePath%
; 按下 Enter 键选择文件
Send, {Enter}
Send, {Enter}
Sleep, 500 
Send, {F1}

; 监听 Esc 键
Esc::
    ; 关闭指定的进程
    Process, Close, Zombie Big Trouble.exe
    Process, Close, LosslessScaling.exe
    return

Edited by miao8yu5
Posted (edited)

i tested this ahk files but don't work for launch directly losslessscaling.....

the scaling don't work .....the 2 programs works but in small windows....sorry

Edited by nosoucy62
Posted
9 hours ago, nosoucy62 said:

i tested this ahk files but don't work for launch directly losslessscaling.....
我测试了这个 AHK 文件,但不适用于 Launch Direct 无损缩放.....

the scaling don't work .....the 2 programs works but in small windows....sorry
缩放不起作用.....这两个程序可以工作,但在小窗口中......不好意思

luach  Lossless Scaling v02.04,and Set the hot key  to F1

Posted

sorry

when i launch lossless (and press "mise à l'echelle" in right corner) and F1 after the game is not in fullscreen

Posted
2 hours ago, nosoucy62 said:

sorry  不好意思

when i launch lossless (and press "mise à l'echelle" in right corner) and F1 after the game is not in fullscreen
当我在游戏未全屏后启动无损(并按右上角的“Mise à l'Echelle”)和 F1 时

 

QQ图片20241031200008.png

Posted (edited)

very good miao8yu5

 

I didn't see that you had to do a hotkey 
in losslessscaling......

it work perfectly now !!!

you're the best in AHK files !!

Edited by nosoucy62
Posted
I allow myself to rewrite the script of miao8yu5 because the AHK file did not stop and remained in the background. 
now when you launch the game again the F1 key is no longer required for fullscreen.

#SingleInstance Force
losslessScalingPath := "Lossless Scaling v02.04\LosslessScaling.exe"
zombieGamePath := "Zombie Big Trouble.exe"
dcrFilePath := "zombie_big_trouble.dcr"

; LosslessScaling.exe
Run, %losslessScalingPath%
Sleep, 500

; Zombie Big Trouble.exe
Run, %zombieGamePath%
Sleep, 1000


Send, %dcrFilePath%
Send, {Enter}
Send, {Enter}
Sleep, 500
Send, {F1}
    
$Escape::
    Send !{f4}
    Process, Close, AutoHotkey.exe
    Run,taskkill /im "AutoHotkey.exe" /F
    Process, Close, Zombie Big Trouble.exe
    Run,taskkill /im "Zombie Big Trouble.exe" /F
    Process, Close, LosslessScaling.exe
    Run,taskkill /im "LosslessScaling.exe" /F
    ExitApp
return

 

 

very much my friend for your help!!!!

 

launcher zombie big.ahk

Posted

thank you miao8yu5 and nosoucy62 for tha script now i can upload more games in time that i have and need ahk script like this one stay tuned

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...