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 Quack

  1. Quack

    [Delphi] MapleStory GM Client

    Thanks a lot! So well made. Could check out my old WZ edits I did years ago and also look around GMS files. GG! This + Koolk MapEditor is a dream haha Btw, is there a way to move between spawn points? Don't think inmap teleport works so can't reach some parts of the map.
  2. Quack

    If you could ask a Nexon programmer anything, what would it be?

    probably wouldve asked to describe their usually day working there and what he usually program and if he is satisfied with how things run there regarding the game
  3. Quack

    My admin page

    Damn this is old, was react even a thing in 2016? LOL. Did with ASP.NET and AJAX
  4. Quack

    C# Keyboard key presser (Bot)

    Yea I know, I edited it to not get problems with the server. xD I tried null, still nothing. A friend told me to use MapVirtualKey, still nothing. T_T Here is what I tried with PostMessage: -EDIT- Got it working thanks anyway!
  5. Quack

    C# Keyboard key presser (Bot)

    I got bored so I tried to investigate if I can code my own Keyboard Key presser in C#, you can call it a bot pretty much. I tried in C# using KeySend.Send, PostMessage, SendKeys.SendWait, SendMessage and more. I couldn't make it work on a MapleStory server, tried before on chrome and notepad...
  6. Quack

    CocoStory v83 || 125x/20x/20x || Rebirth || New Maps

    Re: CocoStory v83 || 50x 10x 5x || Rebirth || New Maps Reported that the server is closed long ago, but the moderators are not active. Server closed.
  7. Quack

    making source???

    System.out.println("source");
  8. Quack

    WZ Map edit v83 , auto warping

    Check the MapEditor\XML the portals, seems you got a "Auto Teleport (force teleport)". Edit it or remove it.
  9. Quack

    CocoStory v83 || 125x/20x/20x || Rebirth || New Maps

    Re: CocoStory v83 || 50x 10x 5x || Rebirth || New Maps We have a new website, You must be registered for see element.. We have a new forum, You must be registered for see element.. We have a new Training System in FM, more details, You must be registered for see element..
  10. Quack

    Mob Spawn Problems

    You're right, giving the default value made it work without errors. Thank you very much for your assistance!!
  11. Quack

    Mob Spawn Problems

    private MapleData getItemData(int itemId) { MapleData ret = null; String idStr = "0" + String.valueOf(itemId); MapleDataDirectoryEntry root = itemData.getRoot(); for (MapleDataDirectoryEntry topDir : root.getSubdirectories()) { for (MapleDataFileEntry iFile...
  12. Quack

    Mob Spawn Problems

    Now it changed the HP, MP. Why only the HP and MP is in the MapleMonster.java also and not EXP as well for example? But still can't kill it. At list I get an error now. You must be registered for see element. For now I gtg, I will download a different source that has it to try to understand...
  13. Quack

    Mob Spawn Problems

    public void setOverrideStats(MapleMonsterStats overrideStats) { this.stats = overrideStats; }
  14. Quack

    Mob Spawn Problems

    In the source its called MapleMonsterStats. I've added to NPCConversationManger this public MapleMonsterStats newMonsterStats() { return new MapleMonsterStats(); } Now when I try to spawn the mob with this function spawnMob(id) { var x = cm.getPlayer().getPosition().getX()...
  15. Quack

    Mob Spawn Problems

    Mind giving me the used newMonsterStats()? I don't have it and can't find the original on google.
Back
Top