Jump to content

Recommended Posts

Posted

hey,i get into the game,i log in i see server Siel i choose it and nothing happens :( it just stays on the server selection and i can do nothing anymore.Waiting doesnt help.

 

SAME FOR ME !

ANY1 HELP !!!!!!!!!!!!!!!!

  • 2 weeks later...
  • 3 months later...
Posted

i have this problem when i start login server then write me this error

errorta.jpg

 

ok problem resolved i edit startlogin.bat & startgame.bat and put them line

 

SET PATH="c:\Program Files\Java\jdk1.7.0_02\bin"

Posted

SAME FOR ME !

ANY1 HELP !!!!!!!!!!!!!!!!

go into your Gameserver/Config folder and edit the ipconfig.xml file

example :<ipconfig default="192.168.1.65"> <------ Enter your LAN or WAN ip there without removing the "" or the <>. delete my instructions, save the file and you're done. :P

</ipconfig>

if its not working give us more infos.

 

  • 1 month later...
Posted

[iNFO] 2012-03-03 03:23:55 - Connected to LoginServer!

[iNFO] 2012-03-03 03:23:55 - sending packet: 0x00 SM_GS_AUTH

[iNFO] 2012-03-03 03:23:55 - recived packet: [C] 0x00 CM_GS_AUTH_RESPONSE

[FATAL] 2012-03-03 03:23:55 - GameServer is not authenticated at LoginServer si

e, shutting down!

[WARN] 2012-03-03 03:23:55 - Connection with LoginServer lost...

[iNFO] 2012-03-03 03:23:55 - Runtime is shutting down now ...

[ERROR] 2012-03-03 03:23:55 - Critical Error - Thread: Thread-1 terminated abno

maly: java.lang.NullPointerException

java.lang.NullPointerException

        at com.aionemu.gameserver.network.loginserver.LoginServer.gameServerDis

onnected(LoginServer.java:375)

        at com.aionemu.gameserver.ShutdownHook.shutdownHook(ShutdownHook.java:1

5)

        at com.aionemu.gameserver.ShutdownHook.run(ShutdownHook.java:54)

 

Server is terminated abnormaly ...

 

 

Server is terminated ...

What about this error;

 

 

 

 

 

 

 

 

 

  • 4 weeks later...
Posted

Hello just tryed following the instructions and ive come across a Error When i click try to compile the login serv i get this error message in the consile box

 

Buildfile: E:\aion syn\trunk\AE_LoginServer\build.xml

init:

compile:

    [javac] Compiling 60 source files to E:\aion syn\trunk\AE_LoginServer\build\classes

 

BUILD FAILED

E:\aion syn\trunk\AE_LoginServer\build.xml:63: java.lang.UnsupportedClassVersionError: com/sun/tools/javac/Main : Unsupported major.minor version 51.0

 

Total time: 156 milliseconds

 

please please can some one help me i would be verry gratefull thanks :)

Posted

I've been having problems finding tools.jar in jre6 and jre7.  I have jdk and that has tools.jar but it still doesn't work.  When I use the tools.jar from jdk I get the error [bUILD FAILED

C:\Aion_emu\trunk\AE_LoginServer\build.xml:63: java.lang.UnsupportedClassVersionError: com/sun/tools/javac/Main : Unsupported major.minor version 51.0] in eclipse.  Any insights?

 

[Edit: Answered my own question.  Just use tools.jar from an older version of jdk.  Solves run->run error]

  • 2 weeks later...
Posted

Hi! Okay so ive tried everything i could... but to no avail i still can't get past where i click ok to login. ive redone all the steps, deleted and made new gs an ls.. everything quadruple checked that all my ip's are correct... but it still wont let me even access servers or login it is just stuck in limbo.

Any help? >.<

version is 2.7 if that helps?

  • 1 month later...
Posted

Yep, I am looking around still so I may answer my own question but I am curious... Where do we find the client for this version and what version is this exactly?

 

Edit: Ok I think I figured out the client version issue, seems you just downgrade to the appropriate client with a patch (hope I'm right at least). But..

 

I am getting this message when I run eclipse. Any clue what I did wrong?

 

"A Java Runtime Enviroment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the follwing locations: C:\My Aion Server\Downloads\Eclipse\jre\bin\javaw.exe javaw.exe in your current path"

 

Edit: Got it mate, seems that eclipse link wasn't kosher. Moving forward now. Now for creating the database, do I create a login database and a gameserver database? Or execute both sql's into the same database? How many sql's are there total?

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • “Hello, I’d like to present a short description of the server. Everyone starts equally at max level 80. The server includes a custom buffer, custom class master, custom weapons and armors, custom zones, custom teleporter, custom raid bosses, and much more. I’ll leave a link in the description for those who want to see how everything looks inside. The server is only open on weekends, and you can find more news via the Facebook link.”   https://www.facebook.com/profile.php?id=61578869175323
    • 1. You where subscriber 3 years ago. 2. There is no current L2jMobius 2.8 Seven Signs version. Subcriber or not. 3. You have your answer from multiple forums that more items is more delay.  
    • 1. Optimize Packet Serialization Look in ItemList.java or wherever the inventory packet is constructed. Instead of building the packet with inefficient string concatenation or repeated allocations, use a preallocated buffer and avoid creating new objects for each item. Mobius sources are Java-based, so profiling with something like VisualVM or YourKit can help see where most time is spent. 2. Avoid Sending the Full List Each Time Modify the server to send only changed items (diff packets) when the inventory window opens. Some newer forks implement this as “lazy loading” or paged inventory so the client only loads e.g. 100 items at a time. 3. Limit the Inventory Size Per Page Instead of showing all 500 slots at once, split the inventory into pages/tabs (100 slots each). When the user switches a tab, send only that page’s items. This requires some client-side editing, but it’s the most user-friendly long-term fix. 4. Database & Cache Optimizations Ensure your items table is indexed by owner_id to make the query for player items fast. Cache item templates and static data so they are not reloaded every time the inventory is shown. ⚠️ Things to Keep in Mind Increasing slots from 80 → 500 does not just change a number — it multiplies the workload for packet building and UI rendering. You can’t fully avoid some extra cost with 500 items, but you can keep it under a few milliseconds if you optimize how and when the data is sent.    
    • i think it's the auto sorting of the interface that sucks, check InventoryWnd script in interface.u, or completely disable the request item list packet when toggling the inventory window (also in InventoryWnd script or similar name)
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock