Page 92 of 92

Re: Sildur's Enhanced WAR Shaders v7.2 with UI filter! (October 5, 2025)

Posted: Tue Mar 17, 2026 11:12 pm
by Madscot
Any fix for Sildurs-Launcher not finding the RoR Launcher file all of a sudden, I've changed nothing?

Cheers

Re: Sildur's Enhanced WAR Shaders v7.2 with UI filter! (October 5, 2025)

Posted: Wed Mar 18, 2026 3:52 am
by Abrafo
Madscot wrote: Tue Mar 17, 2026 11:12 pm Any fix for Sildurs-Launcher not finding the RoR Launcher file all of a sudden, I've changed nothing?

Cheers
It can happen if the game fails to load correctly or completely. First, make sure there are no running processes of the RoR launcher in your Task Manager. If so, end them. Then go to your game's root folder and find the file, D3D9.dll and rename it to D3D9.dll.load which is what it should be and your game should start properly again. If you have running processes of the launcher still in Task Manager, renaming the file won't work until you stop the launcher as stated. If you find that D3D9.dll.load is already present, then I don't know what the issue is, but this is what happens to me on occasion and it always works. Good luck!

Re: Sildur's Enhanced WAR Shaders v7.2 with UI filter! (October 5, 2025)

Posted: Mon Mar 30, 2026 9:14 pm
by Starx
Really like the preset, adds a bit of nice stuff without changing too much.

Anyone got any suggestions for filters to play around with that might look good in game that are included in reshade now? And anyone with an AMD card know what if any settings are worth messing around with in adrenaline?

Re: Sildur's Enhanced WAR Shaders v7.2 with UI filter! (October 5, 2025)

Posted: Tue Apr 28, 2026 5:25 pm
by saupreusse
Abrafo wrote: Wed Mar 18, 2026 3:52 am
Madscot wrote: Tue Mar 17, 2026 11:12 pm Any fix for Sildurs-Launcher not finding the RoR Launcher file all of a sudden, I've changed nothing?

Cheers
It can happen if the game fails to load correctly or completely. First, make sure there are no running processes of the RoR launcher in your Task Manager. If so, end them. Then go to your game's root folder and find the file, D3D9.dll and rename it to D3D9.dll.load which is what it should be and your game should start properly again. If you have running processes of the launcher still in Task Manager, renaming the file won't work until you stop the launcher as stated. If you find that D3D9.dll.load is already present, then I don't know what the issue is, but this is what happens to me on occasion and it always works. Good luck!
I fixed the launcher for you.
Just open the sildurs launcher .bat file in an editor and replace its content with this script:

Code: Select all

@echo off

REM Check if D3D9.dll exists and rename it first
if exist "D3D9.dll" (
    echo Found D3D9.dll, renaming to D3D9.dll.load...
    rename "D3D9.dll" "D3D9.dll.load"
)

start RoRLauncher.exe /seperate
@echo Starting launcher before injecting dll.
timeout /T 2 /NOBREAK > nul

rename D3D9.dll.load D3D9.dll

@echo You have 60 seconds to launch the game now.
timeout /T 60 /NOBREAK > nul

wmic process where "name='RoRLauncher.exe'" delete

rename D3D9.dll D3D9.dll.load

@echo bye.