I keep seeing threads about the gem upgrade chance and I figured i would help you out.
Browse to the file CompleteGreaterRiftTag.cs in QuestTools.
Find this section of code. Should be line 233.
Change it to:
This will stop upgrading gems at 30% and move on to the next section in QuestTools.
Browse to the file CompleteGreaterRiftTag.cs in QuestTools.
Find this section of code. Should be line 233.
Code:
if (delta <= -7) return 0f; //Diablo3 disables upgrades for -15 levels difference
Change it to:
Code:
if (delta <= -1) return 0f; //Diablo3 disables upgrades for -15 levels difference
This will stop upgrading gems at 30% and move on to the next section in QuestTools.