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 Hashed

  1. Hashed

    The 'Show Off' topic

    The craftable item requires a specific amount of materials. Materials can be any item except gamble items. 5x Enormously Huge Skull 5x Crimson's Necklace 1x Speaking Stone are required to be in your characters inventory to craft a Android Mask
  2. Hashed

    The 'Show Off' topic

    Basic item crafting system lol this was really fun to make and still requires a bit more work, but it is functional for the most part You must be registered for see element.
  3. Hashed

    Match Server Crashes

    Attach a debugger and let it crash or open the dmp in VS with symbols loaded. Both methods will take you to where the crash occured. Ntdll is a core windows OS library that contains various functions to process other applications.
  4. Hashed

    Fov

    This is because ZScreenEffectManager, which contains most of the logic for the HUD, does not support a FOV higher than the default(70). Friendly and enemy nameplates have seperate logic. Enemy nameplates use the location of the crosshair when over your enemy to draw the name. Friendly...
  5. Hashed

    crash when quest shoots me

    This database exception is NOT the cause for your crash. Keep in mind that Quest NPCs are p2p for the most part. Run your client with a debugger attached, and reproduce the crash. You likely have a null pointer somewhere.
  6. Hashed

    friends doesnt see server

    The default port for the Locator is 8900 UDP, not TCP. And as others suggested, allow servers through your firewall via rules, and double check your configurations.
  7. Hashed

    Please take a look

    It seems you have multiple problems going on. 1. This could be an indexing issue when iterating match objects. Verify your indexing is correct. As for the stage name, you can search for UnNamedStage in your source to replace it. You should also find gametype being set in the same area. By...
  8. Hashed

    GunzCord - Discord bot for GunZ

    The DiscordNET API is a bit outdated, and will have issues recongizing commands due to the API version not supporting Gateway Intents that were added by Discord. For those who are just now using this project, you will need to update the DiscordNET, Json, and Log4Net packages, and add Gateway...
  9. Hashed

    [Help]Matchserver DB Error

    More information is needed. Post your matchserver log file.
  10. Hashed

    Issue logging into gunz

    Your matchserver is crashing due to a login error or database error. Run your matchserver with a debugger attached, and reproduce the crash. It will take you to the kine in the source where the crash is occurring. You will have a general idea of where and what the problem is.
  11. Hashed

    After being in a game for 2 miniutes client crash

    Run your client with a debugger attached, let it crash, and see where it takes you. That should give you a general idea of whats happening. Also, your matchserver seems to be having database connection issues.
  12. Hashed

    Where do I safely download and create a Gunz server? (HELP)

    This is very good work and I look forward to any of your contributions towards these open sourced projects. Keep up the good work!
  13. Hashed

    Where do I safely download and create a Gunz server? (HELP)

    I'm not sure who requested you for SQL Server support, but we have had an active branch for SQL Server for quite some time now. Weve also got one for Postgresql. Maybe the developer forgot about these branches. But thanks for your support anyways. Iirc, weve already patched these MUID exploits...
  14. Hashed

    [WPF] GunZ Launcher /w Source

    Heya, sorry I dont have this project anymore. I do not recommend using this either, its not very good.
  15. Hashed

    [Request] Quest Full Working 100% from _SYSTEM32_ and Emisand

    Heya For quest items not being picked up Add this to MMatchRuleQuest::OnBegin before MakeQuestLevel in MatchServer m_nQuestCompleteTime = 0;
Back
Top