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 PirateKing

  1. PirateKing

    [BETA] MapleBitCMS

    I have checked the repository main branch and this is line 19 on this file: if ($gc->num_rows) { On the previous line, the $gc variable value is set: $gc = $mysqli->query("SELECT c.$first , c.$second, c.name, c.accountid, a.banned AS banned FROM characters c LEFT JOIN accounts a ON...
  2. PirateKing

    WZ delete me

    You must be registered for see element.
  3. PirateKing

    Edit NX Cash While Logged In

    The easiest way is probably creating a new table responsible to store the "pending" rewards from voting. So, when gtop pingback is called, the rewards will all be stored at this table. After this, I see two options: 1. Create a command to redeem the rewards: Create a simple command (i.e...
  4. PirateKing

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

    Hey! The first "one of a kind" item comes in my mind is HT necklace. This is the necklace configuration you should have in your server-side (if you didn't edit anything): You must be registered for see element. Look this specific property: <int name="only" value="1"/> By comparing to other...
  5. PirateKing

    <help>MoopleDEV83,Magical seven years later error

    Do what @You must be registered for see element. asked you to do, this will help you track the problem. Before the System.out.println() on the second catch block, type e.printStackTrace() as suggested. By doing this, the error while trying to execute action method will be displayed in your...
  6. PirateKing

    OrionAlpha - A Nexon-like KMS 1.21/1.23 and JMS 0.20 Emulator

    Install git in your computer: You must be registered for see element. Then, using the git bash or terminal, clone the repository: git clone You must be registered for see element. By doing this, you've cloned the repository into your local machine. If Eric update it and you need to pull the...
  7. PirateKing

    How to make a MapleStory Private Server [v83]

    You literally just have to read the code to understand what each commands does. If you can't code, there's nothing much you can do. To your friends connect in your server, you can use hamachi/port forward your router. For port forwarding, try something like this: You must be registered for see...
  8. PirateKing

    [help] localhost client edit

    If you're using v83, you can find the addresses to use higher resolutions in this thread: You must be registered for see element.
  9. PirateKing

    i wanna npc increasing maxHP.

    Hey, you can learn about npc scripting by reading one of the lot tutorials we have here on RZ. You can try this one to get used to it: You must be registered for see element. Or you can try to find more information by using google as already said.
  10. PirateKing

    importpackage not defined using jdk 7

    Try to add this at the begin of your file (even before the importPackage lines): engine.eval("load('nashorn:mozilla_compat.js');"); If it works, you're not using JDK 7.
  11. PirateKing

    ElationMS Source (HeavenMS Based)

    Link is up and working, it was just a big laggy to start the download.
  12. PirateKing

    Few Issues I can't find a basis for [v83 setup]

    We team viewer and managed to find the issue. The issue in specific here, was problably related to MySQL version not supporting something related to encoding. In case you're dealing with the same issue, make sure you have tried: 1. Configured and compiled ServerConstants with the same...
  13. PirateKing

    Adding Additional Item Slots v83?

    Well, you got this error because using <> is in fact not a valid command, I just used it to make the structure of the command, since it could be '' or null or other data types. About the version, I'm not sure, since I never had any troubles executing the .sql files, but if it works for you I...
  14. PirateKing

    Adding Additional Item Slots v83?

    For changing the slotMax property of your item, you need to update your .wz files. I suggest you to take a read in this thread: You must be registered for see element. Look for the Items section in the post and it should be what you need.
  15. PirateKing

    Adding Additional Item Slots v83?

    You can edit it on database. Look into the characters table for the columns equipslots, useslots, setupslots, etcslots. If you check the sql file, by default it's using 24 (probably the same amount you're having there): `equipslots` int(11) NOT NULL DEFAULT '24', `useslots` int(11) NOT...
Back
Top