Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Working Aion Emus - v1.5, v1.9, v2.5, v2.7, v4.6, v4.9 and 5.x

Joined
Aug 19, 2010
Messages
2,735
Reaction score
2,602
Last edited:
Newbie Spellweaver
Joined
Dec 23, 2013
Messages
41
Reaction score
16
Newbie Spellweaver
Joined
Dec 23, 2013
Messages
41
Reaction score
16
There is video tut of it. And few of tutorials on this forum..


I've compiled other AU, AL, A-galaxy, even some really old aion knight comps but, this AL comp is missing something that i cannot get. Actually that video doesn't help, because this comp works different, with one build all that calls maven and even eclipse enviroment. The needs of mvn or svn in the compile its new 4 me. Even if i get them and try to compensate, idk if im doing right, or its because of the version / old of the comp.
 
Master Summoner
Top Poster Of Month
Joined
May 25, 2020
Messages
537
Reaction score
240
I've compiled other AU, AL, A-galaxy, even some really old aion knight comps but, this AL comp is missing something that i cannot get. Actually that video doesn't help, because this comp works different, with one build all that calls maven and even eclipse enviroment. The needs of mvn or svn in the compile its new 4 me. Even if i get them and try to compensate, idk if im doing right, or its because of the version / old of the comp.
Will be more better identifying problem if you say what files you try to build. Or link where you get them from. Sorry but be a magician will not solve your problem without any more clues. It's like try help on blind
 
Newbie Spellweaver
Joined
Dec 23, 2013
Messages
41
Reaction score
16
Will be more better identifying problem if you say what files you try to build. Or link where you get them from. Sorry but be a magician will not solve your problem without any more clues. It's like try help on blind
Its the AL 1.9 in the main post:
Aion Lightning rev.333:
Download:

those files have this folders in main:

1713834038212 - Working Aion Emus - v1.5, v1.9, v2.5, v2.7, v4.6, v4.9 and 5.x - RaGEZONE Forums

And this is the tools page:
1713834052753 - Working Aion Emus - v1.5, v1.9, v2.5, v2.7, v4.6, v4.9 and 5.x - RaGEZONE Forums

Problem starts with the build-all.bat
1713836123828 - Working Aion Emus - v1.5, v1.9, v2.5, v2.7, v4.6, v4.9 and 5.x - RaGEZONE Forums


And this is the files new link 'cause this post it's down:

 

Attachments

You must be registered for see attachments list
Master Summoner
Top Poster Of Month
Joined
May 25, 2020
Messages
537
Reaction score
240
Its the AL 1.9 in the main post:
Aion Lightning rev.333:
Download:

those files have this folders in main:

View attachment 260062
And this is the tools page:
View attachment 260063
Problem starts with the build-all.bat
View attachment 260064

And this is the files new link 'cause this post it's down:

When I get home I will check it out. Open build. Bat by txt editor what is there.

Its the AL 1.9 in the main post:
Aion Lightning rev.333:
Download:

those files have this folders in main:

View attachment 260062
And this is the tools page:
View attachment 260063
Problem starts with the build-all.bat
View attachment 260064

And this is the files new link 'cause this post it's down:

Download:
link dead
I find in Russian web compiled version of this

Ps. All this 1 click builds work just fine . They got in tools folder noip patch removing ip restrictions.
Windo fliping you will not fix with thouse like i say before . Its just let you login into game . To fix that you need to rewrite yourself noip source .

Its the AL 1.9 in the main post:
Aion Lightning rev.333:
Download:

those files have this folders in main:

View attachment 260062
And this is the tools page:
View attachment 260063
Problem starts with the build-all.bat
View attachment 260064

And this is the files new link 'cause this post it's down:

to compiled this source you need to setup mvn



or just use eclipse to download and setup automatic
 
Last edited:
Newbie Spellweaver
Joined
Dec 23, 2013
Messages
41
Reaction score
16
When I get home I will check it out. Open build. Bat by txt editor what is there.
Echo off
@setlocal

set PATH=%CD%;%PATH%

PATH= C:\Program Files\Java\jre6\bin

set CLEAN=
set COMPILE=
set INSTALL=
set DEPLOY=
set ASSEMBLY_ASSEMBLY=
set ECLIPSE_CLEAN=
set ECLIPSE_ECLIPSE=
set ECLIPSE_M2ECLIPSE=

for %%A in (%*) do (
if %%A == clean (
set CLEAN=clean
)else if %%A == compile (
set COMPILE=compile
)else if %%A == install (
set INSTALL=install
)else if %%A == deploy (
set DEPLOY=deploy
)else if %%A == assembly:assembly (
set ASSEMBLY_ASSEMBLY=assembly:assembly
)else if %%A == eclipse:clean (
set ECLIPSE_CLEAN=eclipse:clean
)else if %%A == eclipse:eclipse (
set ECLIPSE_ECLIPSE=eclipse:eclipse
)else if %%A == eclipse:m2eclipse (
set ECLIPSE_M2ECLIPSE=eclipse:m2eclipse
)else (
echo.
echo Invalid goal '%%A'!
echo.
goto :end
)
)

if "%1" == "" (
set CLEAN=clean
set INSTALL=install
set ASSEMBLY_ASSEMBLY=assembly:assembly
)


cd ..
call :execute-maven %ECLIPSE_CLEAN% %CLEAN%
call :execute-maven-inside al-commons %COMPILE% %INSTALL% %DEPLOY%
call :execute-maven-inside al-game %COMPILE% %ASSEMBLY_ASSEMBLY%
call :execute-maven-inside al-login %COMPILE% %ASSEMBLY_ASSEMBLY%
call :execute-maven-inside al-cserver %COMPILE% %ASSEMBLY_ASSEMBLY%
call :execute-maven %ECLIPSE_ECLIPSE% %ECLIPSE_M2ECLIPSE%
cd tools

echo.
echo Done:
for %%A in (%ECLIPSE_CLEAN% %CLEAN% %COMPILE% %INSTALL% %DEPLOY% %ASSEMBLY_ASSEMBLY% %ECLIPSE_ECLIPSE% %ECLIPSE_M2ECLIPSE%) do (
echo - %%A
)

echo This script is made by NB4L1, so a big thanks to him.
echo.
pause

:end
@endlocal
goto :eof


rem #############################################
:execute-maven
if "%*" NEQ "" (
call execute-maven.bat *%
)
goto :eof

:execute-maven-inside
for /f "tokens=1*" %%A in ("%*") do (
cd %%A
if "%%B" NEQ "" (
call execute-maven.bat %%B
)
cd ..
)
goto :eof
rem #############################################

PS: Had already tryed installing maven, and now again with this tuto but error still the same*
 
Back
Top