Does it work with Enhanced Edition? If not do you know any way of improving camera for the enhanced edition? I'm new to the series thanks to BG3, and I'm planning to play dos 2 definitive edition after this. If you could tell me if there's a similar mode for that one too as it seems the only camera mods are made for the original releases.
I got it working but I have an issue. When I'm in combat, after every individuals combat turn the camera zooms out to max. Next guy's turn to attack, I zoom in, do the attack and when attack turn switches to next person the camera zooms out to 60 again.
Paste this in a .bat file to automate opening and closing with the game (Windows 10 + Steam)
@echo off start steam://rungameid/373420
SETLOCAL EnableExtensions set GAME_EXE=EoCApp.exe set CAMERA_EXE=DosEECamera.exe
echo Waiting for the game to start... :LOOP1START FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %GAME_EXE%"') DO IF %%x == %GAME_EXE% goto FOUND @TIMEOUT /T 1 >nul goto LOOP1START
:FOUND echo Starting camera fix... @TIMEOUT /T 2 >nul cd "C:\PATH\TO\DosEECamera\" start /B "" %CAMERA_EXE%
echo Waiting for the game to quit... :LOOP2START @TIMEOUT /T 1 >nul FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %GAME_EXE%"') DO IF %%x == %GAME_EXE% goto LOOP2START taskkill /IM %CAMERA_EXE% exit
Or use Playnite, which can run powershell scripts on startup and shutdown. Perfect for things like this, or even requiring a controller to be on before launching a game.
endorsed! this game even works for EE (Steam version)! And also for Xbox controler! first, deactivate the controller, save the configuration and launch the game, tilt the camera /zoom and save. Return to main menu and activate the controller. play! the camera position is fixed (still zoom/dezoom of course)
For all of those who are seeking a fix for the tilt, edit "DosEECamera.ahk" and replace the contents with the code in this paste (shortcut for tilt changed to Q, because using mouse button 3 for both rotate and tilt is glitchy): https://pastebin.com/a0aw0yRx
found the correct memory addresses in this thread: https://forums.nexusmods.com/index.php?/topic/6017553-improved-camera/
45 comments
If not do you know any way of improving camera for the enhanced edition? I'm new to the series thanks to BG3, and I'm planning to play dos 2 definitive edition after this. If you could tell me if there's a similar mode for that one too as it seems the only camera mods are made for the original releases.
@echo off
start steam://rungameid/373420
SETLOCAL EnableExtensions
set GAME_EXE=EoCApp.exe
set CAMERA_EXE=DosEECamera.exe
echo Waiting for the game to start...
:LOOP1START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %GAME_EXE%"') DO IF %%x == %GAME_EXE% goto FOUND
@TIMEOUT /T 1 >nul
goto LOOP1START
:FOUND
echo Starting camera fix...
@TIMEOUT /T 2 >nul
cd "C:\PATH\TO\DosEECamera\"
start /B "" %CAMERA_EXE%
echo Waiting for the game to quit...
:LOOP2START
@TIMEOUT /T 1 >nul
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %GAME_EXE%"') DO IF %%x == %GAME_EXE% goto LOOP2START
taskkill /IM %CAMERA_EXE%
exit
this game even works for EE (Steam version)! And also for Xbox controler!
first, deactivate the controller, save the configuration and launch the game, tilt the camera /zoom and save. Return to main menu and activate the controller. play! the camera position is fixed (still zoom/dezoom of course)
For all of those who are seeking a fix for the tilt, edit "DosEECamera.ahk" and replace the contents with the code in this paste (shortcut for tilt changed to Q, because using mouse button 3 for both rotate and tilt is glitchy): https://pastebin.com/a0aw0yRx
found the correct memory addresses in this thread: https://forums.nexusmods.com/index.php?/topic/6017553-improved-camera/
Cheers