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 Diamondo25

  1. Diamondo25

    Nexon's monster HP formula

    Where did this come from? It's really specific code, like the constexpr...
  2. Diamondo25

    i try MS2 private server

    MapleStory 2 is not comparable to MapleStory 1. The servers are not compatible.
  3. Diamondo25

    Generate packet Header from client

    Oh man, using DPS tool i made years ago, which was based of MapleLib, is not the best source for this nowdays. I think this is more related to what you are doing: You must be registered for see element.
  4. Diamondo25

    [V.12] MapleGlobal

    FieldSet is used for instances. In this version its mainly KPQ. Config can be gotten from BMS FieldSet.img
  5. Diamondo25

    [V.12] MapleGlobal

    No comment. Everything we want to release now is on github. You must be registered for see element.MapleGlobal (WvsBeta_REVAMP) This is it. The last version before closing down. This only contains the server source, without the scripts and other 'private' things, making it incompatible with...
  6. Diamondo25

    MapleStory Client/Localhost Archive

    Re: MapleStory new client archive (#GMSDLReborn) TransIP Stack, maybe?
  7. Diamondo25

    Road to a Localhost

    Yes, this is the 'key'; however, in MapleStory dev terms its the 'IV', and its only 16 bytes (4x4). In the V.3 client, only the first 4 bytes are used (memset with either the input key or 0xC65053F2, then memcpy to struct). This is because of the error I've previously described (only every...
  8. Diamondo25

    Road to a Localhost

    The AES should be the full key, instead of the 'left side' (every first 4 bytes of 16 bytes of the key). No channels when you click the world? Possibly wrong information in the world packet? screenshot maybe?
  9. Diamondo25

    Web Displaying # Online

    ehm, I do not recommed fetching _all_ accounts, just to get the amount of rows. <?php $query = $mysqli->query("SELECT COUNT(*) FROM accounts WHERE loggedin = 2"); $row = $query->fetch_array(); // Get first row from resultset $query->free(); // Free up memory $plyonline = $row[0]; // Get the...
  10. Diamondo25

    NPC's with different animations built into them

    Small easter egg: if you say "Maple's the bomb!" in sight of gaga, the client will send a 'special act' packet. It still works in GMS. Oh, yea, everybody in the range of you and gaga will send it by the way. Client doesnt check wether the local player or a remote player said it.
  11. Diamondo25

    Is there a way to get rid of the little ad after closing the client?

    Another one would be (I guess) changing the URL to: javascript:window.close()
  12. Diamondo25

    Payment failed for 2 subscriptions (out of 2)

    Payments are delayed, which is causing the error. Sorry for the disturbance
  13. Diamondo25

    Payment failed for 2 subscriptions (out of 2)

    Hey, I was unable to give away a subscription. After paying with PayPal, .com basically shat itself and gave me 'Payment failed' error. Twice. MentaL Object IDs in paypal orders are: 14133205a53635b4a2bb62dea0180d21 f61c0cfe856aaeb6f1e3e2006b98428e
  14. Diamondo25

    MapleStory Client/Localhost Archive

    Re: MapleStory new client archive (#GMSDLReborn) Small sidenote: they didn't change the AES user key.
  15. Diamondo25

    v75 Completely Broken on PC.

    Check the stacktrace to see where it happens.
Back
Top