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 bekzod13

  1. bekzod13

    [Release] [C#] MapleLauncher - Custom Launcher

    Its saying, i assume that the key for v142 is already in it. Debug and check it with breakpoints to confirm.
  2. bekzod13

    How to add the Admin account and becoming gm??

    i dont understand what u wrote here :P
  3. bekzod13

    How to add the Admin account and becoming gm??

    in most v111+ sources, settting a character as GM is set by changing your Characters gm level. try that :D. instead of changing the gm column under your accounts table, try the gm column under your character table.
  4. bekzod13

    Increasing Stats NPC Method

    Under Nimakin or Kin, there should be an npc that can change the stats on an equip, look into that method for the code.
  5. bekzod13

    Web where would one start?

    MSDN is also a good place to learn the .net framework and can be useful in learning more information about a certain class or approach to something new, i.e. async, proper threading and etc.
  6. bekzod13

    someone hacked my server

    pretty sure unban id is a 0 and not a -1, check your login method to see which one is correct
  7. bekzod13

    Web v159 Redirector / Localhost

    what kind of issues are you facing, you havent given us any information about your redirector issues.
  8. bekzod13

    help - Kin NPC

    you probably have the companion } bracket somewhere below the code and u didnt remove that too. You have to make sure its the right one, so check and recheck.
  9. bekzod13

    v28 update notes

    Not sure how accurate it is but i think you will have a basic idea. You must be registered for see element.
  10. bekzod13

    Job Advance (For All version) *Just 111 line*

    } else if (cm.getPlayer().getLevel() >= 60) { if (cm.getJob() % 100 >= 10) { Job = cm.getJob() + 1; } } else if (cm.getPlayer().getLevel() >= 100) { if (cm.getJob() % 100 > 10) { Job = cm.getJob() + 1; } } Code may be subject to change, but this is my thought...
  11. bekzod13

    Job Advance (For All version) *Just 111 line*

    I recommend changing the code to work for Mod's (%) and checking for individual job ids that way instead of all those id checks manually. That way its more dynamic if nexon adds another job, and im not saying this will work for all job advancement levels, some of the early advancements have a...
  12. bekzod13

    Private X-Mas Challenge (to all applicable)

    Uploaded mine too, You must be registered for see element. Enjoy the holidays everyone
  13. bekzod13

    [Christmas] EventList

    So i also decided to accept the Christmas challenge so here it is!! at around v152, when i was sniffing i found where they were sending event list so i took advantage and made it into my own packet. I code in C# with my emulator so this code will be C#, its your job to transfer that code into...
  14. bekzod13

    Web Reading Maple WZ and Displaying IMG

    If your going to use C#, i recomend using reNX instead of reWZ, its way faster and more efficient than reWZ
  15. bekzod13

    Pin and Pic help? Also, whats the difference?

    PIC is the authentication process during character selection, PIN was the 4 digit combination after you entered your password at the beginning, they discontinued that cause it was not as secure probably EDIT: To get it to work, if i assume ur going gms version then sniff, if not u have to use...
Back
Top