[EN] complete guide to easy AION setup [3.0~3.5]

02/27/2013 20:59 R0CK7Y#76
Quote:
Where can I edit this?
game\data\static_data\flight_zones
still not sure :)


Quote:
Okay, but can I edit the welcome-message in the chat, too ([Only registered and activated users can see links. Click Here To Register...])
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?
([Only registered and activated users can see links. Click Here To Register...])
its a client side look under the L10N i think.
02/27/2013 21:36 KazuyaX93#77
Quote:
Originally Posted by R0CK7Y View Post
game\data\static_data\flight_zones
still not sure :)
Thanks man! :D


Quote:
Originally Posted by R0CK7Y View Post
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 View Post
didnt understand what do you mean by thats
Don't worry, it's already solved :)

Quote:
Originally Posted by R0CK7Y View Post
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 "[Only registered and activated users can see links. Click Here To Register...]"
Any other decrypter?
02/27/2013 22:17 R0CK7Y#78
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 "[Only registered and activated users can see links. Click Here To Register...]"
Any other decrypter?
idk actully i am not used to extract or pack these files :)
02/27/2013 22:36 KazuyaX93#79
Quote:
Originally Posted by R0CK7Y View Post
there is are u sure you extracted the js-encom-game.jar?
Yea, I`m sure :D no files that contains "player" in filename ([Only registered and activated users can see links. Click Here To Register...])

Quote:
Originally Posted by R0CK7Y View Post
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 R0CK7Y#80
Quote:
Originally Posted by KazuyaX93 View Post
Yea, I`m sure :D no files that contains "player" in filename ([Only registered and activated users can see links. Click Here To Register...])


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 KazuyaX93#81
Quote:
Originally Posted by R0CK7Y View Post
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: ([Only registered and activated users can see links. Click Here To Register...])
02/28/2013 00:37 R0CK7Y#82
Quote:
Originally Posted by KazuyaX93 View Post
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: ([Only registered and activated users can see links. Click Here To Register...])
amm first:
[Only registered and activated users can see links. Click Here To Register...]

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 KazuyaX93#83
Quote:
Originally Posted by R0CK7Y View Post
amm first:
[Only registered and activated users can see links. Click Here To Register...]

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! :D
Now it works!
03/03/2013 12:39 Goten202#84
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 Teake33#85
How do I get to the register page to create an account
03/04/2013 10:21 R0CK7Y#86
Quote:
Originally Posted by Goten202 View Post
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 zamsss#87
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 R0CK7Y#88
login with the wanted Username and password and it will auto created through the DB!
03/04/2013 19:28 zamsss#89
thanks it works but when i try to select server says : not avaible in your region.Something like that i don't remember :D
03/04/2013 20:01 R0CK7Y#90
at the setup use either CC1 or CC2 the Client you are using if Ncsoft CC1 if GameForge CC2 :D