- Joined
- Jul 6, 2023
- Messages
- 4
EDIT: Script isn't really working how I intended it to.
Not ready to discuss progress on a "real" patch for the launcher, but I've formalized this workaround into the following batch script:
Code:@echo off setlocal REM Step 1: Go to the folder %LOCALAPPDATA%\RuneLite cd /d "%LOCALAPPDATA%\RuneLite" REM Step 2: Create a backup directory and copy the contents of the current directory into the backup set BACKUP_DIR="%CD%\backup_%date:/=-%_%time::=-%" mkdir %BACKUP_DIR% xcopy /E /I /Y /exclude:%BACKUP_DIR%\*.* *.* %BACKUP_DIR% REM Step 3: Copy everything from C:\Program Files\RuneMate into the folder from step 1 set RUNEMATE_DIR=C:\Program Files\RuneMate xcopy /E /I /Y "%RUNEMATE_DIR%\*" "%CD%" REM Step 4: Rename RuneMate.exe to RuneLite.exe ren "%CD%\RuneMate.exe" RuneLite.exe echo "Backup created at %BACKUP_DIR%" echo "RuneMate files copied to %CD% and RuneMate.exe renamed to RuneLite.exe" pause endlocal
I ran the BAT and it said it was renamed, I launched RuneLite from the Jagex launcher and it still launched the regular RuneLite. RuneMate never came up.
Tried launching it through RuneMate, still says you have to login through Jagex Launcher.
Got it to work, the BAT didn't actually rename anything. I went into my AppData and did it and its running now. Thanks!