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

QuestTools Gem upgrade fix

Rein

Member
Joined
Oct 11, 2012
Messages
49
Reaction score
0
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.
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.
 
You my sir are a gent, fed up of watching my bloody bot trying to upgrade my Trapped at 2% chance.... haha
 
Works well, I just gear that when the time comes, all my gems will be lower % and I'll have to force upgrade low %
 
So, if it can't find any gems to upgrade with at least X% probability, it will upgrade the keystone instead?
 
Back
Top