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!

Recent content by sunnyboy

  1. sunnyboy

    [Ida reference] I'm interested in learning reverse engineering.

    Not to sound unhelpful, but Hex Rays has classes to teach how to use IDA. My reference was trial and error over time. Googled what I didn't know, read IDA definitions and just did not give up. good luck
  2. sunnyboy

    What's coming out of your speaker holes?

    You must be registered for see element.
  3. sunnyboy

    netbeanst error.

    It helps if you mouse over the error to see what it tells you specifically.
  4. sunnyboy

    Need help with kms v1.2.220 client

    You could always launch the client using this You must be registered for see element. I use it for any foreign app that needs a different locale. The website has a photo of Japanese, but you can add other options for almost all languages. (korean included)
  5. sunnyboy

    Eric's Guide to coding, IDE Maplestory servers

    Started maple dev 10 years ago (2008), so basically experience. It helps to understand what the game is all about, so you can design your structure to suit it. Like.. since you have a field (the map) which contains life such as mobs, reactors, npcs etc. Users have skills, quests, minigame...
  6. sunnyboy

    Eric's Guide to coding, IDE Maplestory servers

    MapleCharacter is basically the class which is the user itself. It stores and contains everything about a user. Each user is its own MapleCharacter object. SkillFactory is what odin uses to load skill data from skill.wz. It stores each skill information into a map with <Integer, Skill> where...
  7. sunnyboy

    MapleSolaxiaV2 Deadlocks?

    It was doing something and tried to do something again without finishing the first task (took too long), thus conflicting to a deadlock.
  8. sunnyboy

    What's coming out of your speaker holes?

    You must be registered for see element.
  9. sunnyboy

    Help to understand ODIN structure

    When the client expects something from you, it sends Recv Opcode which gets handled by your server. In netty it's handled by channelRead0, but for odin it's messageReceived in MapleServerHandler.java. If you see it, you'd be able to tell what it's doing very easily
  10. sunnyboy

    Eric's Guide to coding, IDE Maplestory servers

    If you have that experience in programming, then structure wise, you can technically create your own. Just by referencing existing sources, can give you can example of what to expect when designing your structure. Coming up with the structure would be easier if you have long experience in...
  11. sunnyboy

    Eric's Guide to coding, IDE Maplestory servers

    Could always read a programming book to start off...
  12. sunnyboy

    how to in IDA know addpartystatus(PARTYDATA::Decode) structure?

    Yeah, what Yuuroido said, the local type structure should directly correlate to the decode when the class name is ALL CAPS.
  13. sunnyboy

    Equipments error?

    NullPointerException in MapleItemInformationProvider.java at function canWearEquipment line 1443. Something is null at that line causing your NPE.
  14. sunnyboy

    Question about v90...

    no changes
  15. sunnyboy

    PLZ remove the HShield (2010 OLD HShield)

    I'm sure if you can't remove, you can always use a bypass.
Back
Top