vault is not working. dh is pretty fucked up.
If you want Trinity to pick up purple orbs in Greater Rifts change this in
ItemHandling.cs:
if (name.StartsWith("tiered_rifts_Orb")) return GItemType.ProgressionGlobe;
to
if (name.StartsWith("tiered_rifts_orb")) return GItemType.ProgressionGlobe;
I'm guessing that you're using Spines of Seething Hatred.
This is how I fixed it. In the file DemonHunterCombat.cs (located in Combat\Abilities).
Find this if-statement on line 316-320:
Code:// Spines of Seething Hatred, grants 4 hatred if (Legendary.SpinesOfSeethingHatred.IsEquipped && CanCast(SNOPower.DemonHunter_Chakram, CanCastFlags.NoTimer)) { return new TrinityPower(SNOPower.DemonHunter_Chakram); }
Replace the return value in the if-statement with following:
Code:return new TrinityPower(SNOPower.DemonHunter_Chakram, 50f, CurrentTarget.ACDGuid);
Is here anyone who know ID for Rainbow Goblin?
Rainbow Goblin - Portal to Whimsydale
[22A27518] GizmoType: PortalDestination Name: Start_Location_0-2434 ActorSNO: 5502
[22A48974] GizmoType: Portal Name: p1_Portal_Tentacle_goblin-2433 ActorSNO: 405590
worldid 49093
levelareaid 49094
Thanks it FIX itThis is what you need to do to fix Chakram.
Thanks it FIX it
but you only need to replace
return new TrinityPower(SNOPower.DemonHunter_Chakram);
with
return new TrinityPower(SNOPower.DemonHunter_Chakram, 50f, CurrentTarget.ACDGuid);