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 Zydee

  1. Zydee

    Vote While Logged In

    Hello, First let me address your initial findings. The reason for the check to see if a player is online is because when a player is online, their data has already been loaded from the database and stored in memory to be used by the game-server. In other words, the data inside the database...
  2. Zydee

    Need help adding a check for "One of a kind" Items

    Re: Need help adding a check for "One of a kind" Items I took a quick look into ida to confirm if this is handled by the client and it is. v3 = TSecType_long_::GetData(( * (20 * a2 + v2[113] + 16) + 12)); if (CItemInfo::IsOnlyItem(v3)) { if...
  3. Zydee

    Need help adding a check for "One of a kind" Items

    If you look up the equip or item in them wz files, it most likely have a property that tells you if it is a unique item or not. Make sure that property is being loaded when your item is created and use that property as an additional check inside function you mentioned. if...
  4. Zydee

    Help HeavenMS MobSkill Dispel How to ignore specific skills

    This is not really answering your question, but I would recommend using a switch statement in this case as it is more manageable and is generally faster in these cases. for (MapleBuffStatValueHolder mbsvh : getAllStatups()) { switch (mbsvh.effect.getBuffSourceId()) { case...
  5. Zydee

    Cash Shop Help, HeavenMS

    Hello, If you check CashOperationHandler.java, there is a block of code the handlers cash item purchases. Specifically, this is what I am speaking about. if (action == 0x03) { // Item .... Item item = cItem.toItem(); cs.gainCash(useNX, cItem, chr.getWorld()) ... } If you...
  6. Zydee

    WZ [Showcase] WZ Editing Showcase Thread

    ill give you $5 and a handjob
  7. Zydee

    Removing the Boomerang Step client limitations

    This was already done in a recent help thread for v83, you just need to find it for your version. You must be registered for see element.
  8. Zydee

    [help] npc scripting

    Some npcs cannot be overwritten or scripted as they're handled by the client. Another example of this is the npc cody with the tag wizet.
  9. Zydee

    [MapleStory] Recruiting Developers and Moderators

    I am currently seeking Developers and Moderators for an upcoming MapleStory Private server. The specifics for the server will be below. For Developers: I am seeking developers to work on a v176 server with me. The base will be Swordie and it will be a low rate server. I ask you at least know a...
  10. Zydee

    can't start server

    Use debugger to see where it is hanging at.
  11. Zydee

    [RELEASE] Client load .img instead of .wz v62~v92

    If you don't have enough time, then you don't have enough time. Learn with what time you have. If you don't want to learn then don't go around asking to be spoon fed on a development forum. Play what is available to you because others are willing to learn and have put in the hard work. Also...
  12. Zydee

    [RELEASE] Client load .img instead of .wz v62~v92

    If you don't have enough time, then you don't have enough time. Learn with what time you have. If you don't want to learn then don't go around asking to be spoon fed on a development forum. Play what is available to you because others are willing to learn and have put in the hard work. Also...
  13. Zydee

    [RELEASE] Client load .img instead of .wz v62~v92

    If you don't have enough time, then you don't have enough time. Learn with what time you have. If you don't want to learn then don't go around asking to be spoon fed on a development forum. Play what is available to you because others are willing to learn and have put in the hard work. Also...
Back
Top