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

The reason of trinity cannot pick up gems

ovefuture

New Member
Joined
Apr 15, 2017
Messages
1
Reaction score
2
In the ItemProperties.cs, the GemType is "-1" so trinity cannot know the gem type.

Work around:
In the file {DemonBuddy Installed Directory}\Plugins\Trinity\Framework\Actors\Properties\ItemProperties.cs,
search this line:
actor.TrinityItemType = TypeConversions.GetTrinityItemType(actor.RawItemType, actor.GemType);

add following code after this line:
if (actor.RawItemType == RawItemType.Gem)
{
if (actor.TrinityItemType == TrinityItemType.Unknown) {
// assume this is an Emerald
actor.TrinityItemType = TrinityItemType.Emerald;
}
}
 
Back
Top