Jump to content

Elmsroth

getMaNGOS Developer
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    5
  • Donations

    10.00 GBP 

Everything posted by Elmsroth

  1. @Mobi Wan, Sorry but this is a forum dedicated to MaNGOS technical questions. Our cores are not coded in Java. You better have a chance on Stackoverflow. Thanks.
  2. Hi @Mobi Wan, Sorry but what's the point with MaNGOS source code ? Can you point out a specific implementation in our files that is confusing you ? Best regards,
  3. Hello @lmcroberta, You have to acquire a Vanilla client to extract data from it, do not use the retail classic client. Best regards
  4. Hello @Kogamisan, Sorry for the late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK about your question which is very large . Cheers
  5. Hi, @Ariador, What version of Mangos Two do you use ? Did you pull latest version from Github ? You can reach us on our Discord if you want : https://discord.gg/HeRQHhjK
  6. Hello @Toby, Sorry for the late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK about this issue. Your current message lacks of details in order for us to help you about this situation: for example you do not provide us the version of mangos you are using, the account privileges you have by checking in the database etc... Cheers
  7. Hello @Ariador, Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK about this issue. Your current message lacks of details in order for us to help you about this situation. For example: you could give us a precise quest ID from which the mob killing are not counted. Then we could investigate further. Cheers
  8. Hi @MrZizzmo, You can change all the accounts expansions by running a single SQL query on your database. UPDATE `account` SET `expansion` = 2 ; You can use a DB editor like MySQL Workbench for example. If there is a security issue running this query since it targets all the rows at the same time you can either change this limitations in the editor options (the solution can be found by a simple Google search ) or you can try this other syntax : UPDATE `account` SET `expansion` = 2 WHERE 1 = 1 ; Best regards,
  9. @Harvender, you are welcome. Have you suceeded in starting your core finally ? Best regards,
  10. Hello @jilinge2, Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK Using VS2019, you can debug another way : Copy the mangosd ".pdb" files generated by you build in the execustion folder Run the core Use the "attach to process" tool of VS2019. Enjoy debugging ! Moreover : you know you can update to VS 2022 right ? Best regards,
  11. Hello @DarkSeraX, Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK It would be easier for us to help you. Give us the link of your post when you'll post your message on the discord ;). Best regards,
  12. Hello @Harvender Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK It seems the core cannot fin the game extracted data. Be sure to have configured the right path in your config files and extracted the game data with the correct executables. Best regards,
  13. Hello @Graphenes Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK We miss some information about what you entered in your realmlist config in database. Please, do not copy the whole config file the next time, a link on pastebin is enough. Best regards,
  14. Hello @v413nc3, Sorry fort he late response. You can eventually talk to us more directly on our active Discord chat : https://discord.gg/HeRQHhjK We are aware of the lack of debug on this version. We are indeed a small team an the most active versions are for the moment MaNGOS Zero and MaNGOS One. If you want to bring help, it would be greatly appreciated. Best regards,
  15. Hi @jilinge2. The information you provided is not complete so we cannot help you further. You do not provide us with the language you are trying to translate to. You also do not give us item id examples that have not been translated. We are also available for help in our Discord server : https://discord.gg/HeRQHhjK Best regard,
  16. Hello @sscultima. Thanks for posting here. Sorry for the late response. If you want there is also an active Discord chat : https://discord.gg/HeRQHhjK You said That's a first wrong thing you've done. Basically the MySQL/mariaDB (depending on what you choosed) database should only receive localhost connections since it is the MaNGOS daemons which require a connection to the DB... not your "buddies" ;). In the realmlist in your database, you should have set the IP adress to your global WAN adress that your ISP provides to you. The local address should be the LAN adress of your hosting PC. You buddies can set the external address and you can set the local one since you are at home ;). In the mangosd.conf file you should have set "BindIP" to 0.0.0.0. Feel free to reach us on our Discord to discuss further about your issue. Best regards, Elmsroth
  17. Hello, It seems the gossip system used for main game functions (Inns, Stable master, tradeskills etc..) do not use localization system for the moment for the intro text but they go for gossip options. It is a core related issue. On which core did you notice that ?
  18. Hello @Teasta, In order to reduce console verbosity you can consider changing the debug level using the LogLevel parameter in the mangosd.conf file. @jilinge2 it is a good article but not the real solution to the source problem regarding console verbosity. Best regards, Elmsroth
  19. Hi everyone, Mangos zero is now featured with a brand new command for Gamemasters : .reset mail
  20. Thank you @lukasradek it is a big team work. You can also bring your own brick to the building Cheers !
  21. Elmsroth

    M2 Setup on Ubuntu 21.04

    @Gryphon4200 Hello and thank you for the waltkhrough guide with Ubuntu 21.04. Before publishing, can you please remove your client warmane links since it is not allowed to share Blizzard copyrighted content (Game Clients) You can also put some screenshots like the Guide I published for Ubuntu 18.04 and to be more user-friendly and enjoyable to read you can use the same formatting for text-emphasis etc...
  22. Elmsroth

    Extracting Game Data

    You should have the game to have wow.exe mate We do not provide the game client.
  23. Ok ! Well, since player can change equiped stuff they would be able to tweak it by themself. So even if you "force" equiping, the player will always be able to switch. Perhaps you can try to investigate another way to ensure player have same items equiped before fighting for each class, but using vendors is not the recommended way to be honest
  24. Hello @Karibu You will have to modify the core on how bought items are handled. The modfication would act as follow : Before buying, check if player has enough space for storing the item ; Then if buy is OK, check if item is equipable ; Determine the equipment slot the item belongs to ; Remove current equiped item on destination slot and put it on an empty bag slot ; Add the item in the destination slot (proeprty stored in the items itself to help finding the correct equipment slot) On another hand, the feature as described is not really a good idea since all players do not want to equip items directly after buying them from an NPC. If they have big bags it will force them to search for the undesired equiped item. Can you explain more uses cases ? For the technical side you will find the BuyItemFromVendor method in the core in Player.cpp file.
  25. Hello , For armor just learn the skills using .learn command For the rest i'm afraid it is not achievable using DB you will have to code it by yourself in C++, and then recompile the source code. There should be lots of files involved but by studying how Spells work you will be able to do anything you want in SpellHandlers Since you are from Guadeloupe you will understand : Des fois y'a pas le choix faut plonger dans l'code du coup ben à part bidouiller le code source, recompiler et tester en jeu y'a pas d'autre moyen, faut apprendre par soi même c'est le but de MaNGOS 😛 c'est un projet éducatif à la base.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use