Adjusted AP gains, to get it to work following the AP Reset check method. Fixed usage of inexistent itemids on CPQ and fishing. Fixed one-of-a-kind items being lost in player trades due to missing inventory checks. Implemented matching system for the guild creation phase. All players intending to join the new guild must be on the Guild Headquartes and accept the creation of the guild. Fixed changing jobs not properly updating info on the party tab. Fixed double tooltip information on CPQ actions UI. Fixed CPQ not disbanding after a player leaves the party/instance. Fixed checks for "in-progress" CPQ instances. Fixed changing maps on CPQ not leading players back to the starting battlefield. Reviewed login system, now preventing non-local IP connecting on local server and local IP on non-local server. Reviewed login system, now cherrypicking sessions in transition state when trying to disconnect them due to a failed login (avoiding possible mishaps due to duplicate sessions of a same account). Adjusted PiratePQ stage 2, now mobs respawn rather than making party leader request for new waves. Adjusted Prime Minister, its spawn is no longer related to starting the quest. It should also allow party fights. Fixed "forcevac" command not properly applying, rather sending to inventory, "consume-on-pickup" items. Fixed (probably) accId = 0 issue on login, that was occurring due to client accountid's being set to 0 a while before being checked once again on finishLogin(). Fixed an issue with extended time on CPQ not properly showing the end-match's visual effect.
61 lines
1.3 KiB
Batchfile
61 lines
1.3 KiB
Batchfile
REM // 'launchtest.bat' Author: Tochi
|
|
@echo off
|
|
set a=0
|
|
title HeavenMS: Offline
|
|
color 1b
|
|
:clear
|
|
cls
|
|
echo HeavenMS Server Launcher
|
|
echo.
|
|
echo Commands:
|
|
echo -------------------------------------------------------------
|
|
echo start - Start HeavenMS server
|
|
echo shutdown - Shut down HeavenMS server and close Launcher File
|
|
echo reset - Resets HeavenMS Launcher File
|
|
echo clear - Clear this window
|
|
echo -------------------------------------------------------------
|
|
echo.
|
|
|
|
:command
|
|
set /p s="Enter command: "
|
|
if "%s%"=="start" goto :start
|
|
if "%s%"=="shutdown" goto :shutdown
|
|
if "%s%"=="reset" goto :reset
|
|
if "%s%"=="clear" goto :clear
|
|
echo Wrong Command.
|
|
echo.
|
|
goto :command
|
|
|
|
:start
|
|
if "%a%"=="1" (
|
|
echo HeavenMS is already active!
|
|
echo.
|
|
goto :command
|
|
)
|
|
color 4c
|
|
echo This might take a while....
|
|
echo.
|
|
title HeavenMS: activating
|
|
echo Server Launching...
|
|
start /b launch.bat
|
|
color 2a
|
|
title HeavenMS: Online
|
|
set a=1
|
|
ping localhost -w 10000 >nul
|
|
echo.
|
|
goto :command
|
|
|
|
:shutdown
|
|
color 4c
|
|
title HeavenMS: Shutting Down...
|
|
echo The Server Launcher will be close in a few seconds.
|
|
ping localhost -w 100000 >nul
|
|
taskkill /im cmd.exe
|
|
|
|
:reset
|
|
color 4c
|
|
title HeavenMS: Resetting...
|
|
echo Please type 'start' in command box after bat file have been resetted.
|
|
ping localhost -w 100000 >nul
|
|
start launchtest.bat REM // thanks Paxum for noting that 'launchtest.bat' is to be used here
|
|
taskkill /im cmd.exe |