I'm new here but have been a Rappelz player for a long while.
I have been using Fear's 9.4 and 9.5.2 Guides to create a local server.
During this week of diving into files, writing scripts, and reading over 500 pages from the help thread. I wanted to make my own contribution.
Here are some things I've learned/made for my own server.
(Also special thanks to ThunderNikk and Fear as they had most of the answers I needed when I got stuck.)
------------------------------------------------------------------------------------
My SQL Server Config Launch Script.Bat
@
offecho Starting SQL Server services...
:: Start SQL Server Analysis Services (INSTANCE NAME HERE)
echo Starting SQL Server Analysis Services (INSTANCE NAME HERE)...
net start "SQL Server Analysis Services (INSTANCE NAME HERE)"
:: Start SQL Server Agent (INSTANCE NAME HERE)
echo Starting SQL Server Agent (INSTANCE NAME HERE)...
net start "SQL Server Agent (INSTANCE NAME HERE)"
:: Start SQL Server (INSTANCE NAME HERE)
echo Starting SQL Server (INSTANCE NAME HERE)...
net start "SQL Server (INSTANCE NAME HERE)"
:: Start SQL Server Browser
echo Starting SQL Server Browser...
net start "SQL Server Browser"
:: Start Full-text Filter Daemon Launcher (if needed)
echo Starting SQL Full-text Filter Daemon Launcher (INSTANCE HERE)...
net start "SQL Full-text Filter Daemon Launcher (INSTANCE NAME HERE)"
:: Start the Report Server (INSTANCE NAME HERE) last
echo Starting SQL Server Reporting Services (INSTANCE NAME HERE)...
net start "SQL Server Reporting Services (INSTANCE NAME HERE)"
echo SQL Server services check completed.
pause
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
My Rappelz Servers Launcher.BAT with Aurora prompt and auto launch.
Replace with correct directory for each program. Change Username.
@
offecho Starting execution of programs...
:: Launch the first program
echo Opening Program1...
start "" "C:\RAPPELZ SERV\9.5\9.5\GameEngine\Log_bin\LogServer.exe"
timeout /t 2 >nul
:: Launch the second program
echo Opening Program2...
start "" "C:\RAPPELZ SERV\9.5\9.5\GameEngine\LogChat_bin\ChattingLogSer ver.exe"
timeout /t 2 >nul
:: Launch the third program
echo Opening Program3...
start "" "C:\RAPPELZ SERV\9.5\9.5\GameEngine\Upload_bin\UploadServer.ex e"
timeout /t 2 >nul
:: Launch the fourth program
echo Opening Program4...
start "" "C:\RAPPELZ SERV\9.5\9.5\GameEngine\patch_bin\PatchServer.exe"
timeout /t 3 >nul
:: Launch the fifth program
echo Opening Program5...
cd /d "C:\RAPPELZ SERV\9.5\9.5\GameEngine\Auth_bin"
start "" "PrincessAuroraServer.exe"
timeout /t 10 >nul
:: Launch the sixth program
echo Opening Program6...
cd /d "C:\RAPPELZ SERV\9.5\9.5\GameEngine\Game_bin"
start "" "CaptainHerlockServer.exe"
timeout /t 10 >nul
:: Launch the seventh program
echo Opening Program7...
start "" "C:\RAPPELZ SERV\9.5\9.5\GameEngine\Launcher_bin\ServerLaunche r_x64.exe"
:: Wait for all programs to launch
timeout /t 5 >nul
echo All programs launched.
:: Prompt user to enter commands for Aurora
echo Now, please type the following commands into Aurora:
echo 1. start_service
echo 2. set game.open_external 1
echo Press any key when done...
pause >nul
:: Open the Rappelz shortcut after user presses a key
start "" "C:\Users\USERNAME\Desktop\x.lnk"
:: Wait for user input to close programs
:wait_close
set /p userInput=Type "Close" to close all programs and exit:
if /i "%userInput%"=="Close" (
echo Closing all programs...
taskkill /f /im LogServer.exe >nul 2>&1
taskkill /f /im ChattingLogServer.exe >nul 2>&1
taskkill /f /im UploadServer.exe >nul 2>&1
taskkill /f /im PatchServer.exe >nul 2>&1
taskkill /f /im PrincessAuroraServer.exe >nul 2>&1
taskkill /f /im CaptainHerlockServer.exe >nul 2>&1
taskkill /f /im ServerLauncher_x64.exe >nul 2>&1
echo All programs closed. Exiting script.
exit
) else (
echo Invalid input. Please type "Close" to exit.
goto wait_close
)
========================================
Issues Encountered and Fixes:
1. Game is Arabic/Censored
-The Client provided by Fear is a Tweaked Arabic Client that appears English. It is not actually English.
*Download Clean English Client from the Useful Links Collections Thread credited to ThunderNikk.
2. Game Text appears large/Screen Flashes/Error on Launch "Render"
-2008 Game. It is not optimized for HDR,4K, or a zoomed display.
*Use Rappelz v1.opt in main folder where launcher resides. Edit this to be either 2560x1440 or 1920x1080. Then go to your windows display settings, confirm your "scale" is at 100%.
3. Issues Launching with Bat. and using English Client
-You may not have changed the ports or the serial number in gameserv.opt
*Check Gamserver.opt & Make sure Launcher.bat looks like this;
RappelzCmdLauncher.exe sframe.exe /auth_ip:127.0.0.1 /auth_port:9881 /use_nprotect:0 /help_url_w:611 /help_url_h:625 /locale:ASCII /country:CN /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631/allow_double_exec:1
Thanks, to all the hard-working Rappelz modders out there.
I hope this helps someone like me.
(may add to this if I find more useful tricks.)







