mroz123456: Hello,
I created an AHK script which improves the camera in the game.
You can increase maximal zoom of camera and you can tilt camera with vertical mouse movement while middle mouse button is pressed - in other words - a classic 3D camera movement.
Has anyone found a newer script/mod or version of this (or the appropriate tweak to pattern search, memory modification) that will work with DoS2 definitive edition? There is a similar ahk script for the steam version, but it's based on absolute addresses that, apparently, don't match the gog version.
[edit]
Ok, got it working. For some reason the routine searching for the pattern fails if it uses the default start address. Manually setting the start address seems to have fixed it. Since this start address is randomly picked by me, it's possible that an update to DoS2 DE will move the appropriate data structures before this point and it'll stop working. In the mean time, if you're somewhat handy, you can do this:
Edit Dos2camera.ahk
Find the line: bAddr := dos.processPatternScan(,,aob*)
Change it to: bAddr := dos.processPatternScan(0x1e000000000,,aob*)
That's 0x1e followed by nine zeros.
You'll need to install "autohotkey" to be able to run the script (.ahk file) directly rather than the original exe.
Good luck!