What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Gem Upgrade Bug -- Proof inside.

Lulk1989

New Member
Joined
Sep 9, 2015
Messages
216
Reaction score
1
778dc503d2.jpg


Been happening for a while. Having "Prioritize Equipped Gems" chosen, it will choose gems that cap at 50 and try and upgrade them, stopping you from completing the rift. Even if they are greyed out at the bottom of the Adventuror config
 
I assumed it was Adventurer that handles the upgrading of Legendary Gems, but it appears it is actually QuestTools. With that being said, QuestTools does not seem to have any checks in the upgrade process if the gem is max rank or not.

To fix this, first contact the current developer and inform them, secondly you can go into your "Demonbuddy\Plugins\QuestTools\ProfileTags" folder, and inside the CompleteGreaterRiftTag.cs file, paste this line of code on Line 249:

Code:
            //Gem Max Rank Fix
            var sno = gem.ActorSnoId;
            if (gem.JewelRank == 50 && (sno == 428355 || sno == 405796 || sno == 405797 || sno == 405803))
            {
                return 0f;
            }
a074e6f3f4.png
 
stop using questtools...since its crap...just use adventurer for upgrade gems
 
Back
Top