modomaster
New Member
- Joined
- Oct 1, 2012
- Messages
- 2
- Reaction score
- 0
using a grinding profile to level my warrior and it never uses victory rush to heal himself up? how can i set it up to use victory rush when its available?
I got the same issue here is what i did, but keep in mind that this is a temporary solution the toon will use victory rush even if it has full hp,
go to your honor buddy folder:
HonorBuddy\Routines\Singular\ClassSpecific\Warrior\Arms.cs
im using "Arms.cs" since my toon is specced as Arms i believe the solution works for others
find:
Spell.Cast("Mortal Strike"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
Add to it the 1st line:
Spell.Cast("Victory Rush"),
Spell.Cast("Mortal Strike"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
Hope it works for you
It does work, just make sure u open proper file and save it. After that run HB again.
I've added buff victorious so it only tries to cast victory rush when victorious buff is on.
Spell.Cast("Victory Rush", ret=> StyxWoW.Me.HasAura("Victorious")),