This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; For AutoHotkey2 | |
; Right now just has cell coords for 1440p and 1080p | |
CoordMode "Mouse", "Client" | |
WinGetClientPos ,, &Width, &Height, "ahk_exe DungeonCrawler.exe" | |
if (Width/Height != 16/9) { | |
throw("Detected res is not 16:9 or game window size could not be determined. Make sure the game is open") | |
} | |
if (Width = 1920 and Height = 1080) { | |
colStart := 1080 |