Run DEBUG ALL first, then run compile all.
Kreeate teacher's comments are really grateful.
We ask for continued help with words.
Seusyat as a full compilation and was told 1, 2, the red square now has doubts about.
1. 1 How do I resolve the error?
2. 2 decent error correction not have to think there's taught what to do if you need to fix would be appreciated.
![]()
Last edited by kim8857; 24-06-13 at 08:13 AM.
Start your login server from here :
\FULL_AL3.9_SOURCE\trunk\AL-Login\target\AL-Login-dist\AL-Login\loginserver\StartLS.bat
Start your gameserver from here :
\FULL_AL3.9_SOURCE\trunk\AL-Game\target\AL-Game-dist\AL-Game\gameserver\StartGS.bat
In fact, you can move these two folders somewhere else if you want. They are the compiled folders.
\FULL_AL3.9_SOURCE\trunk\AL-Login\target\AL-Login-dist\AL-Login\loginserver\StartLS.bat
\FULL_AL3.9_SOURCE\trunk\AL-Game\target\AL-Game-dist\AL-Game\gameserver\StartGS.bat
Last edited by Kreeate; 24-06-13 at 09:37 AM.
Build the server is aware of the basic things.
3.9 prebuilt pack files placed in the al-game.jar the game server is running. However, the al-game.jar own build file, you put two andoeneyo drive. What is in the src folder of the files seem to be a problem though right? Specifically not know where the problem occurs, because that raises questions.
Okay, if it's still is not working, try my complete Loginserver & Gameserver files :
Server.7z
Look directly inform.
My intention, rather than a complete pack and I want to modify the files in the src folder is.
Te Kreeate teacher's pack is running well. And al-login.jar files and al-game.jar file compare my pack and looked, there's a difference in file size.
al-login.jar : Kreeate(150kb) me(148kb)
al-game.jar : Kreeate(4200kb) me(4198kb)
Sorry Sir Kreeate game server and login server do you get the src folder?
3.9 prebuilt pack in pack during the execution of the game, about 30-50 minutes after about down below, which displays a message and then try to solve this is to try to modify the src folder.
Gameserver #1 [PID=668] died, closing.
Pingpongthread - execute time 421231msec
After the above message is output to the console window happens to stop the server.
Mmmmm... that is strange.
This is what I did :
That is all I did. I didn't do anything special.Code:Run build.bat choose option 8 - Debug Mode choose option 5 - Debug All Then I ran build.bat again choose option 5 - Build All
I really hope you can find the solutions to your problem.
I have built Builder_ANT.bat file. The contents of the batch file, and the other seems to me.
@echo off
title Aion Extreme 3.0 Compilation Builder Script.
SET PATH="C:\Program Files\Java\jdk1.7.0_21\bin"
:MENU
color 17
CLS
ECHO.
ECHO =[ 3.5 ]================================================[ + ]=
ECHO.
ECHO Aion Extreme 3.0 Compilation Builder Script (build.xml req.)
ECHO.
ECHO =========================[ MENU ]========================
ECHO.
ECHO [1] - Compile ALL
ECHO.
ECHO [2] - Compile LoginServer
ECHO [3] - Compile GameServer
ECHO [4] - Compile ChatServer
ECHO [5] - Compile Commons
ECHO.
ECHO [6] - Exit
ECHO.
ECHO =================================================================
ECHO.
SET /P Ares= Select: 1, 2, 3, 4, 5 ??? 6, and press ENTER:
IF %Ares%==1 GOTO FULL
IF %Ares%==2 GOTO loginserver
IF %Ares%==3 GOTO gameserver
IF %Ares%==4 GOTO chatserver
IF %Ares%==5 GOTO commons
IF %Ares%==6 GOTO QUIT
:FULL
CLS
ECHO ============================================================================
ECHO ALL server ... Compile start
ECHO ============================================================================
ECHO.
ECHO ----------------------------------------------------------------------------
ECHO Commons ... Compile start
ECHO ----------------------------------------------------------------------------
cd ..\AL-Commons
call ..\Tools\Ant\bin\ant clean dist
ECHO ----------------------------------------------------------------------------
ECHO GameServer ... Compile start
ECHO ----------------------------------------------------------------------------
cd ..\AL-Game
call ..\Tools\Ant\bin\ant clean dist
ECHO ----------------------------------------------------------------------------
ECHO LoginServer ... Compile start
ECHO ----------------------------------------------------------------------------
cd ..\AL-Login
call ..\Tools\Ant\bin\ant clean dist
ECHO ----------------------------------------------------------------------------
ECHO ChatServer ... Compile start
ECHO ----------------------------------------------------------------------------
cd ..\AL-Chat
call ..\Tools\Ant\bin\ant clean dist
ECHO ============================================================================
ECHO ALL server ... Compile Complete.
ECHO ============================================================================
GOTO :QUIT
:commons
CLS
ECHO ============================================================================
ECHO You Selected the Commons Compiling
ECHO ============================================================================
ECHO.
cd ..\al-commons
start /WAIT /B ..\Tools\Ant\bin\ant clean dist
GOTO :QUIT
:gameserver
CLS
ECHO ============================================================================
ECHO You Selected the Game Server Compiling
ECHO ============================================================================
ECHO.
cd ..\AL-Game
start /WAIT /B ..\Tools\Ant\bin\ant clean dist
GOTO :QUIT
:loginserver
CLS
ECHO ============================================================================
ECHO You Selected Login Server Compiling
ECHO ============================================================================
ECHO.
cd ..\AL-Login
start /WAIT /B ..\Tools\Ant\bin\ant clean dist
GOTO :QUIT
:chatserver
CLS
ECHO ============================================================================
ECHO You Selected the Chat Server Compiling
ECHO ============================================================================
ECHO.
cd ..\AL-Chat
start /WAIT /B ..\Tools\Ant\bin\ant clean dist
CLS
GOTO :QUIT
:QUIT
pause
exit