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