|
You last visited: Today at 17:45
Advertisement
[EN] complete guide to easy AION setup [3.0~3.5]
Discussion on [EN] complete guide to easy AION setup [3.0~3.5] within the Aion Private Server forum part of the Aion category.
02/27/2013, 20:59
|
#76
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
Quote:
game\data\static_data\flight_zones
still not sure
Quote:
Okay, but can I edit the welcome-message in the chat, too ( )
|
you can look into game\js-encom-game.jar
inside org\jsemu\gameserver\services\player
you will have to open the class files with any class editor.
Quote:
|
I can add/remove the decoration with that, but the Event-NPCs are ingame although the "gameserver.enable.decoration.EVENT"-Part is on "false".
|
didnt understand what do you mean by thats
Quote:
A new question.
When I use the "H"-Button for Help ingame, I'll see the official AION-Webpage-Link.
How can I edit this?
( )
|
its a client side look under the L10N i think.
|
|
|
02/27/2013, 21:36
|
#77
|
elite*gold: 68
Join Date: Nov 2007
Posts: 682
Received Thanks: 127
|
Quote:
Originally Posted by R0CK7Y
game\data\static_data\flight_zones
still not sure 
|
Thanks man!
Quote:
Originally Posted by R0CK7Y
you can look into game\js-encom-game.jar
inside org\jsemu\gameserver\services\player
you will have to open the class files with any class editor.
|
Ouch, I don`t have the folder "org" in this jar-file. Only "commons" and "META-INF" in root of the file. No Folder named "player" is in there :/
Quote:
Originally Posted by R0CK7Y
didnt understand what do you mean by thats
|
Don't worry, it's already solved
Quote:
Originally Posted by R0CK7Y
its a client side look under the L10N i think.
|
Seems to be in "l10n\1_enu\data\data.pak"
But I can`t decrypt this file with "  "
Any other decrypter?
|
|
|
02/27/2013, 22:17
|
#78
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
Quote:
|
Ouch, I don`t have the folder "org" in this jar-file. Only "commons" and "META-INF" in root of the file. No Folder named "player" is in there :/
|
there is are u sure you extracted the js-encom-game.jar?
Quote:
Seems to be in "l10n\1_enu\data\data.pak"
But I can`t decrypt this file with " "
Any other decrypter?
|
idk actully i am not used to extract or pack these files
|
|
|
02/27/2013, 22:36
|
#79
|
elite*gold: 68
Join Date: Nov 2007
Posts: 682
Received Thanks: 127
|
Quote:
Originally Posted by R0CK7Y
there is are u sure you extracted the js-encom-game.jar?
|
Yea, I`m sure  no files that contains "player" in filename (  )
Quote:
Originally Posted by R0CK7Y
idk actully i am not used to extract or pack these files 
|
sh** x_x can`t find other decrypter x_x
|
|
|
02/27/2013, 23:09
|
#80
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
Quote:
Originally Posted by KazuyaX93
Yea, I`m sure  no files that contains "player" in filename (  )
sh** x_x can`t find other decrypter x_x
|
not inside the libs folder
look again what did i say:
Quote:
you can look into game\js-encom-game.jar
inside org\jsemu\gameserver\services\player
you will have to open the class files with any class editor.
|
|
|
|
02/27/2013, 23:54
|
#81
|
elite*gold: 68
Join Date: Nov 2007
Posts: 682
Received Thanks: 127
|
Quote:
Originally Posted by R0CK7Y
not inside the libs folder
look again what did i say:
|
Oh sorry, my bad x_x
none of these .class-files in folder "player" contains a string with "Welcome to" (the message in chat).
I'm using this Class editor: (  )
|
|
|
02/28/2013, 00:37
|
#82
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
Quote:
Originally Posted by KazuyaX93
Oh sorry, my bad x_x
none of these .class-files in folder "player" contains a string with "Welcome to" (the message in chat).
I'm using this Class editor: (  )
|
amm first:
then open the file : PlayerEnterWorldService.class
look for
Code:
{
str2 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_REGULAR, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.XP_RATE), Integer.valueOf(RateConfig.QUEST_XP_RATE), Integer.valueOf(RateConfig.DROP_RATE), Integer.valueOf(RateConfig.KINAH_RATE) });
String str3 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_PREMIUM, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.PREMIUM_XP_RATE), Integer.valueOf(RateConfig.PREMIUM_QUEST_XP_RATE), Integer.valueOf(RateConfig.PREMIUM_DROP_RATE), Integer.valueOf(RateConfig.PREMIUM_KINAH_RATE) });
String str4 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_CLASSIC, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.CLASSIC_XP_RATE), Integer.valueOf(RateConfig.CLASSIC_QUEST_XP_RATE), Integer.valueOf(RateConfig.CLASSIC_DROP_RATE), Integer.valueOf(RateConfig.CLASSIC_KINAH_RATE) });
if (str1 != null)
{
|
|
|
02/28/2013, 12:12
|
#83
|
elite*gold: 68
Join Date: Nov 2007
Posts: 682
Received Thanks: 127
|
Quote:
Originally Posted by R0CK7Y
amm first:
then open the file : PlayerEnterWorldService.class
look for
Code:
{
str2 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_REGULAR, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.XP_RATE), Integer.valueOf(RateConfig.QUEST_XP_RATE), Integer.valueOf(RateConfig.DROP_RATE), Integer.valueOf(RateConfig.KINAH_RATE) });
String str3 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_PREMIUM, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.PREMIUM_XP_RATE), Integer.valueOf(RateConfig.PREMIUM_QUEST_XP_RATE), Integer.valueOf(RateConfig.PREMIUM_DROP_RATE), Integer.valueOf(RateConfig.PREMIUM_KINAH_RATE) });
String str4 = LanguageHandler.translateRU(CustomMessageIdRU.WELCOME_CLASSIC, new Object[] { GSConfig.SERVER_NAME, Integer.valueOf(RateConfig.CLASSIC_XP_RATE), Integer.valueOf(RateConfig.CLASSIC_QUEST_XP_RATE), Integer.valueOf(RateConfig.CLASSIC_DROP_RATE), Integer.valueOf(RateConfig.CLASSIC_KINAH_RATE) });
if (str1 != null)
{
|
Thank you! 
Now it works!
|
|
|
03/03/2013, 12:39
|
#84
|
elite*gold: 0
Join Date: Sep 2010
Posts: 37
Received Thanks: 1
|
can i use 3.5 gameforge client? and if not how can i downgrade and still have the german Langauge?
|
|
|
03/03/2013, 19:01
|
#85
|
elite*gold: 0
Join Date: Mar 2010
Posts: 3
Received Thanks: 0
|
How do I get to the register page to create an account
|
|
|
03/04/2013, 10:21
|
#86
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
Quote:
Originally Posted by Goten202
can i use 3.5 gameforge client? and if not how can i downgrade and still have the german Langauge?
|
amm yes i think you can use GF client. but about the German language am not sure look around for any 3.0 downgrade for the German Version
Quote:
|
How do I get to the register page to create an account
|
its auto creation.
|
|
|
03/04/2013, 13:11
|
#87
|
elite*gold: 0
Join Date: Oct 2011
Posts: 9
Received Thanks: 0
|
grrr no username and password to login .. there is no auto creation. when i open DB i see username Ashen and the password is crypted.
|
|
|
03/04/2013, 18:44
|
#88
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
login with the wanted Username and password and it will auto created through the DB!
|
|
|
03/04/2013, 19:28
|
#89
|
elite*gold: 0
Join Date: Oct 2011
Posts: 9
Received Thanks: 0
|
thanks it works but when i try to select server says : not avaible in your region.Something like that i don't remember
|
|
|
03/04/2013, 20:01
|
#90
|
elite*gold: 10
Join Date: Apr 2010
Posts: 493
Received Thanks: 397
|
at the setup use either CC1 or CC2 the Client you are using if Ncsoft CC1 if GameForge CC2
|
|
|
Similar Threads
|
The full guide for Aion p-server setup [English]
01/12/2013 - Aion Guides & Strategies - 47 Replies
Software that is necessary:
Slik SVN - Binaries for the SVN
TortoiseSVN - For downloading the source
Java Development Kit or JDK in short - To run and help compile the source
MySQL - MySQL server for your database
Navicat Lite - GUI Client for MySQL
Client files - Files needed to be able to get your client to connect to the server
Note: Always download software determined by the OS you're running, meaning if you're running a 64bit OS, download the 64bit software, especially the JDK.
|
[Guide] PowerSource Setup Made Easy!
10/12/2010 - CO2 PServer Guides & Releases - 74 Replies
Enjoy the guide!
Stuff you Need:
Appserv 2.5.10
Navicat 8
Power Source
|
Aion Killer Guide Complete Package
09/18/2010 - Aion Guides & Strategies - 7 Replies
Aion Killer Guide Complete Package
|
All times are GMT +1. The time now is 17:45.
|
|