bombastic
New Member
- Joined
- Jun 18, 2012
- Messages
- 430
- Reaction score
- 3
1) To make Trinity respect your options in Items / Town Run / Keep Rift/Trial/GR in Stash, replace in Plugins\Trinity\Items\TrinityItemManager.cs:
From:
To:
After that, trinity will stash your stones properly.
2) To fix Steed Charge going in an endless loop when trying to Town Portal, just edit all your profiles and replace TownPortal and TrinityTownPortal tags to UseTownPortal.
The native UseTownPortal tag is the only one that try to move a bit when TP fails. QuestTools tags, atm, does not do that. From logs:
Hopefully rrrix will fix both
From:
if (Trinity.Settings.Loot.TownRun.KeepTieredLootRunKeysInBackpack && item.ItemType == ItemType.KeystoneFragment && item.TieredLootRunKeyLevel >= 1)
return false;
if (Trinity.Settings.Loot.TownRun.KeepTrialLootRunKeysInBackpack && item.ItemType == ItemType.KeystoneFragment && item.TieredLootRunKeyLevel == 0)
return false;
if (Trinity.Settings.Loot.TownRun.KeepRiftKeysInBackpack && item.ItemType == ItemType.KeystoneFragment && item.TieredLootRunKeyLevel <= -1)
return false;
To:
if (item.ItemType == ItemType.KeystoneFragment)
{
if (
(Trinity.Settings.Loot.TownRun.KeepTieredLootRunKeysInBackpack && item.TieredLootRunKeyLevel >= 1)
||
(Trinity.Settings.Loot.TownRun.KeepTrialLootRunKeysInBackpack && item.TieredLootRunKeyLevel == 0)
||
(Trinity.Settings.Loot.TownRun.KeepRiftKeysInBackpack && item.TieredLootRunKeyLevel <= -1)
)
return false;
else
return true;
}
After that, trinity will stash your stones properly.
2) To fix Steed Charge going in an endless loop when trying to Town Portal, just edit all your profiles and replace TownPortal and TrinityTownPortal tags to UseTownPortal.
The native UseTownPortal tag is the only one that try to move a bit when TP fails. QuestTools tags, atm, does not do that. From logs:
09:48:20.299 DEBUG DefaultNavigationProvider Generating path to Moving a little, no tp was cast! - <886.4965, 676.6354, 0.1>
09:48:20.306 DEBUG DefaultNavigationProvider Successfully generated path from {X=169,Y=353} to {X=173,Y=355} in 00:00:00.0017326 with 5(3) hops
09:48:20.333 DEBUG DefaultNavigationProvider Client path generated.
09:48:20.334 DEBUG DefaultNavigationProvider Generated path to <886.4965, 676.6354, 0.1> (Moving a little, no tp was cast!) with 3 hops.
Hopefully rrrix will fix both
Last edited:






