Jump to content

Shadez

Members
  • Posts

    158
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Shadez's Achievements

Advanced Member

Advanced Member (3/3)

0

Reputation

  1. Implement dungeon finder in MaNGOS is the best way, I think But you can disable errors displaying in game settings (Menu->Help).
  2. You can use patch and SQL update for character stats & feed log from wowcs repository, but arena chart patch is outdated and I won't update it.
  3. First of all, thanks for your work! Secondly, can you return name of thread where last message was posted (forums index page)?
  4. First: you should not create separate threads to discuss some errors/bugs of wowcs project. Second: i have no troubles with patching mangos sources at [11544] mangos rev. and [88] wowcs rev: Shadez@SHADEZ-PC /e/MaNGOS/!_Sources/mangos-335/mangos (master) $ patch -p1 < wowarmory_patch.patch patching file `src/game/AchievementMgr.cpp' patching file `src/game/Item.cpp' patching file `src/game/Player.cpp' Hunk #1 succeeded at 4327 (offset 8 lines). Hunk #2 succeeded at 15345 (offset 3 lines). Hunk #3 succeeded at 17318 (offset 8 lines). Hunk #4 succeeded at 22847 (offset 19 lines). patching file `src/game/Player.h' Hunk #2 succeeded at 2268 (offset 2 lines). patching file `src/game/Unit.cpp'
  5. Thank you, I will test it on weekends and commit changes to repository. I don't think that it's a good idea because my principle is avoid including 3rd party changes to Armory - only Retail Armory features could be implemented in this project. But if you can implement it, I can commit it as separate custom patch and who wants to use it, will patch original sources with your changes.
  6. [492] Core patches 2.0 Added storage for feed logs - all entries will be saved after Player::SaveToDB() call. Do not forget to update your characters DB(s)!
  7. It will be very helpful because at this moment I don't have free time even to update core patches to new revisions. But project is not dead, don't even think about it At least at now I guess I'll close this one after I'll finish my work under new WoW Commnunity Site but I can't say how much time it will take.
  8. Seems that you have Xdebug extension installed. Open source code of this page (CTRL+U) and copy-paste error message here.
  9. Because it's the basics that must know every MaNGOS user (how to compile source codes at least). If you don't know this and don't want to learn, then it's not my problem but yours.
  10. Yes Look at Help & Support section of this forum to find out some guides.
  11. You should apply patch on server source code instead of compiled core. Also, you're in your home directory (~) instead of D:\\blackroad\\Realm
  12. In GIT console: patch -p1 < wowarmory_patch.patch
  13. * What bug does the patch fix? What features does the patch add? Properly reward faction related titles to player when achievement has been completed (currently just one - 100k honor kills - %s of the Alliance / %s of the Horde). * For which repository revision was the patch created? 11139 * Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread. No * Who has been writing this patch? Please include either forum user names or email addresses. Me diff --git a/src/game/AchievementMgr.cpp b/src/game/AchievementMgr.cpp index 2a0269d..7b4cdfa 100644 --- a/src/game/AchievementMgr.cpp +++ b/src/game/AchievementMgr.cpp @@ -2086,7 +2086,7 @@ void AchievementMgr::CompletedAchievement(AchievementEntry const* achievement) return; // titles - if(uint32 titleId = reward->titleId[GetPlayer()->GetTeam() == HORDE ? 0 : 1]) + if(uint32 titleId = reward->titleId[GetPlayer()->GetTeam() == HORDE ? 1 : 0]) { if(CharTitlesEntry const* titleEntry = sCharTitlesStore.LookupEntry(titleId)) GetPlayer()->SetTitle(titleEntry);
  14. Please, provide full error message. And also post your armory revision. Issue like your was fixed in the latest commit.
×
×
  • 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