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 swordiemen

  1. S

    Java [v214] Swordie Source

    Good to see Soldie being used to further progress the open source mapledev scene :) I'd suggest leaving the .dat files outside of the source itself though (especially if you want to have it on github or something), as it drastically increases the time it takes to unzip/copypaste it somewhere...
  2. S

    [Java] v206 Source Swordie-base

    I guess it's time to update our v176 open source to this one now that the leak is public :^)
  3. S

    Consumable cooldowns?

    Server/client side? Which version? Which source are you using? Should be handled wherever your consumables are consumed, after which a packet is sent to the client to indicate it's gone on cooldown. It uses the field's StatChangeItemConsumeLimit property to know how big the cooldown is.
  4. S

    [swordie v176] error with zakum map and spawning

    Try checking the script that's being run, looks like getDropsInRect isn't being called properly.
  5. S

    [Swordie V176] server error

    Try rerunning the sql files for an ez fix. Looks like your character saving somehow stopped in the middle, and now your char's stats cannot be found anymore.
  6. S

    [SwordieMS][v176] No monster / NPC upon connected localhost client.

    After you've first generated the dat files, you'll have to restart the server once before npcs/mobs spawn. If that doesn't fix it, try deleting equips.dat and starting the server again. That will regenerate everything again, so you can check if there's any errors that pop up.
  7. S

    Problem with src (v179) in the eclipse

    You're missing libraries, use maven to import them. The heap exception is probably because you're using a 32 bit version of java instead of 64 bit. Try using 64 bit and try again. Else run the server with -Xmx 4G or something to increase the maximum allowed memory.
  8. S

    Name functions with BMS IDA

    Yeah you have to rename the variables. They're usually used in other functions though, so you can look at the parameter names for those functions and name the variables accordingly.
  9. S

    NPC spawn not in their intended location

    Check the the foothold values for the spawning npcs are correct. They basically indicate which platform the npc should spawn on, ignoring the position itself.
  10. S

    Swordie v176 Server Setup Guide

    Make sure your dat files generated properly (try regenerating them by deleting equips.dat), the allowed items come from the wz files.
  11. S

    Swordie v176 Server Setup Guide

    Try using a name that's not in use + is long enough + is allowed. Something like "Warrior" or whatever. The result type for invalid char name is wrong, so that's why you get a weird error. Otherwise just debug the handler for CHECK_DUPLICATE_ID (I think?) to see what's going wrong. Kieul: Nice :D
  12. S

    Current version private server guide?

    You must be registered for see element. That one has a 179 source. Having worked on it, I can confirm it's pretty bad. Your best bet for anything high version would be swordie, but that's 176 (just before 5th job).
  13. S

    Best v100 or more source

    Swordie (176)
  14. S

    What is the highest most stable version available?

    Swordie v176 is probably your best bet. There's some 179 stuff floating around, but afaik those are pretty meh.
  15. S

    Quest not appearing(Light bulb?) - Swordie

    It's expecting "route=0" to be in the quest ex info. Quest ex info is basically a simple key-value map as a string: "key1=value1;key2=value2;key3=value3,...". In swordie you can use the setProperty on a Quest, this will set a given property to some value. It will then be converted to a string so...
Back
Top