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

Trinity 1.9.5 & QuestTools 2.0.74

Status
Not open for further replies.
Hey rrrix, running your act3 champion profiles on the last couple of trinity updates and the bot keep running the same areas over and over again. Is this something with the quest tools?

I haven't tested those profiles in forever :) Why not run bounties?
 
Thanks for the update rrrix.

I made a slight change in CrusaderCombat.cs for the ability Akarat's Champion.

Code:
bool hasRally = HotbarSkills.AssignedSkills.Any(s => s.Power == SNOPower.X1_Crusader_AkaratsChampion && s.RuneIndex == 2);

// AkaratsChampion
                if (CanCastAkaratsChampion() && !hasRally)    // cast AC before spenders if using other runes
                {
                    return new TrinityPower(SNOPower.X1_Crusader_AkaratsChampion);
                }

Then copy this after Phalanx

// AkaratsChampion
                if (CanCastAkaratsChampion() && hasRally)
                {
                    return new TrinityPower(SNOPower.X1_Crusader_AkaratsChampion);
                }

Reason for this change is to utilize the Rally rune. The current logic will cast AC prior then those big spenders thus completely defeat the purpose of the rune. I'm not familiar with Trinity so maybe there's a more elegant way to achieve this. Thanks

Quick question: While this code does work for Phalanx, it casts Phalanx too quick after the cd has been refresh. Is there a delay for phalanx for 5 seconds before the next cast so that Phalanx can be chain one after the other (10 total seconds of Phalanx being active) ? The reason why I asked this was because when Phalanx is being cast 1-2 sec after the cd refreshes, it does not stack with the initial cast and thus is a waste of dps.
 
Last edited:
I haven't tested those profiles in forever :) Why not run bounties?

I do run those but I don't like having to babysit them for too long. Yes, it's an older profile but it is (or was) totally AFKable, I could let it run overnight and not have to worry about it doing something retarded while I was asleep.
 
Status
Not open for further replies.
Back
Top