Re: Sildur's Enhanced WAR Shaders v7.2 with UI filter! (October 5, 2025)
Posted: 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
Cheers
Warhammer Online
https://returnofreckoning.com/forum/
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!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
I fixed the launcher for you.Abrafo wrote: Wed Mar 18, 2026 3:52 amIt 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!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
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.