Aller au contenu

Happy Halloween with Zombie Big Trouble


Messages recommandés

Posté(e) (modifié)

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

Modifié par S.G.D
Posté(e)

thanks !

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

Posté(e)
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

Posté(e)
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
Posté(e) (modifié)
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

Modifié par S.G.D
gif
Posté(e) (modifié)

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

Modifié par miao8yu5
Posté(e) (modifié)

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

Modifié par nosoucy62
Posté(e)
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

Posté(e)

sorry

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

Posté(e)
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

Posté(e) (modifié)

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 !!

Modifié par nosoucy62
Posté(e)
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

Posté(e)

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

Veuillez vous connecter pour commenter

Vous pourrez laisser un commentaire aprĂšs vous ĂȘtes connectĂ©.



Connectez-vous maintenant
×
×
  • CrĂ©er...