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 imhehexd

  1. I

    help with a command

    aight, works great! Thank you! :)
  2. I

    help with a command

    so if i'll use other npc, not player one.. will it work?
  3. I

    help with a command

    but i can use other npcs commands by using @<thecommand> and it works fine. either im in the same map or not at the same map
  4. I

    help with a command

    nothing, not even an error npc. Nope. didn't work and even deleted the command.
  5. I

    help with a command

    Hi. i've added a command in "playercommand.java" } else if (splitted[0].equalsIgnoreCase("aio")|| splitted[0].equals("aio npc")) { NPCScriptManager.getInstance().start(c, 9901019, null, player); It works fine when im near the npc. his location is on fm, but when im in...
  6. I

    WZ Importing v162 wz items to v83

    i used couple of guides here. imported them as xml ofc and used HaRepacker to do this. used the newest Version of HaRepacker :) Second thing is. trying to edit the map using HaCreator, whenever im adding any platform in the fm or adding something. the npc's that is in there just teleporting to...
  7. I

    Maplestory GM event.

    im looking for any tag script command. i need a guide to how to setup it. i would appreciate it :)
  8. I

    NPC Problem.

    No problem eric, Thank you very much :)
  9. I

    NPC Problem.

    There is no 0 in there and it works Perfectly. Thank you. and can you asnwer the question i've asked you?
  10. I

    NPC Problem.

    i do get the nx and it says "you've gained 10000 nx cash" so i think it works fine.
  11. I

    NPC Problem.

    nothing. i'll post a new script that i got.. function start() { cm.sendSimple ("Hey There! Would you like to exchange Meso for NX?\r\n#r#L0##e10,000 NX - 100,000,000 Mesos#n#l\r\n#k#L1##e25,000 NX - 200,000,000 Mesos#n#l#k\r\n#e#L2#Cash out #b1#k #r100 point nx card#k\r\n#e#L3#Cash out #b5#k...
  12. I

    NPC Problem.

    did that but still. nothing.. i've changed the modify nx from (0, 10000) to yours still nothing new
  13. I

    NPC Problem.

    public void modifyNX(int amount, int type) { getPlayer().modifyCSPoints(type, amount); if (amount > 0) { getClient().getSession().write(MaplePacketCreator.serverNotice(5, "You have gained NX Cash (+" + amount +").")); } else {...
  14. I

    NPC Problem.

    if(cm.getMeso() >= 10000000){ cm.sendOk("Thanks! 10,000 NX points has been added to your account! Enjoy!"); cm.gainMeso(-10000000); cm.modifyNX(10000, 0); cm.dispose(); }else{ cm.sendOk("You don't have enough mesos, please earn enough first!"); cm.dispose(); } it just removes the meso that i...
  15. I

    NPC Problem.

    as the title says, i wanted to ask a quick question.. whenever im creating an npc. everything goes fine till im giving him the right items that i've set to. it says the npc is not working properly.. if someone has an idea of how to fix it i'll be more than glad. Thanks.
Back
Top