Jump to content

Recommended Posts

Posted

hi !

i make an AHK file to launch in 1920x1080 and restaure resolution in 2560x1440 (my pc resolution)

i take the AHK files by miao8yu5 of sierra 7 to modified for this game

change in AHK file your resolution if you don't have 2560x1440

the only problem is that the taskbar remains displayed at the bottom. if anyone has a solution?

use lossless scaling perhaps ?

 

newWidth := 1920
newHeight := 1080
SysGet, originalWidth, 2560
SysGet, originalHeight, 1440

 

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%銆�
Run, % "QRes.exe /x:" 1920 " /y:" 1080
Run, LD56_Dinos.exe
sleep 1000

 

Esc::
OnExit, RestoreResolution
RestoreResolution:
Run, % "QRes.exe /x:" 2560 " /y:" 1440 ; CHANGE YOUR PC RESOLUTION IN 1920x1080 IF YOU HAVE NOT 2560x1440
Process, Close, AutoHotkey.exe
Run,taskkill /im "AutoHotkey.exe" /F
Process, Close, LD56_Dinos.exe
Run,taskkill /im "LD56_Dinos.exe" /F
ExitApp
return

 

Dino Safari Launcher resolution.ahk

Posted
4 hours ago, nosoucy62 said:

hi !

i make an AHK file to launch in 1920x1080 and restaure resolution in 2560x1440 (my pc resolution)

i take the AHK files by miao8yu5 of sierra 7 to modified for this game

change in AHK file your resolution if you don't have 2560x1440

the only problem is that the taskbar remains displayed at the bottom. if anyone has a solution?

use lossless scaling perhaps ?

 

newWidth := 1920
newHeight := 1080
SysGet, originalWidth, 2560
SysGet, originalHeight, 1440

 

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%銆�
Run, % "QRes.exe /x:" 1920 " /y:" 1080
Run, LD56_Dinos.exe
sleep 1000

 

Esc::
OnExit, RestoreResolution
RestoreResolution:
Run, % "QRes.exe /x:" 2560 " /y:" 1440 ; CHANGE YOUR PC RESOLUTION IN 1920x1080 IF YOU HAVE NOT 2560x1440
Process, Close, AutoHotkey.exe
Run,taskkill /im "AutoHotkey.exe" /F
Process, Close, LD56_Dinos.exe
Run,taskkill /im "LD56_Dinos.exe" /F
ExitApp
return

 

Dino Safari Launcher resolution.ahk 488 B · 3 downloads


The following lines of code retrieve the current screen's width and height in pixels:

 

 

SysGet, originalWidth, 78: This line retrieves the width of the current screen in pixels.

SysGet, originalHeight, 79: This line retrieves the height of the current screen in pixels.


Without needing to modify 78 and 79, this code can be used across different devices to obtain and save the current resolution.
 

Posted

hi

i found a logo for this game....

 

Dino Island Safari-01.png

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...