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

Use Victory rush?

Status
Not open for further replies.

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?
 
Post it in the Singular Thread, I assume you are using Singular, right?

Maybe try CLU or any other Warrior CC?
 
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
 
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

Doesn't work =/
 
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")),
 
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")),

Yay, thank you both
 
How I fixed The Problem
all THX goes to @careless!

go to ...

Honorbuddy\Routines\Singular\ClassSpecific\Warrior
Open with the Editor or Word the following files "Fury.cs" or "Arms.cs"

Arms
Spell.Cast("Victory Rush"),
Spell.Cast("Mortal Strike"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),

If you have LEARNED "Impending Victory" change it with "Victory Rush" like ...

Spell.Cast("Impending Victory"),
Spell.Cast("Mortal Strike"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),


Fury

Spell.Cast("Victory Rush"),
Spell.Cast("Bloodthirst"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),

If you have LEARNED "Impending Victory" change it with "Victory Rush" like ...


Spell.Cast("Impending Victory"),
Spell.Cast("Bloodthirst"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),


If you are a Silly one like me :D just Download the Two files down there and copy it in the following folder ...

Honorbuddy\Routines\Singular\ClassSpecific\Warrior

Change the File name to "Arms.cs" or "Fury.cs" before you copy paste it !

This is for "Impending Victory"
Arms.cs View attachment 58029
Fury.cs View attachment 58030

This is for "Victory Rush"
Arms.cs View attachment 58031
Fury.cs View attachment 58032

My warrior Fury works fine now on battle stance ( he has 363 HC gear atm )

Sry i had no idea how to upload a file here !

sry for my Bad englisch to :D
 
Last edited:
ty it works for me, do you know how i can set the bladestorm plz?
 
i think you can do it like this...


Spell.Cast("Victory Rush"),
Spell.Cast("Bloodthirst"),
Spell.Cast("Bladestorm"),
Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
 
awesome fix! Now to just get charge/intercept working, which doesn't work on any CC I've tried
 
Thanks for the starting point! i editted this a bit so it would only try to cast when it has the buff, and since i use it to heal and not really to do that extra damage i set it to only cast if my hp is lower than 85%. works like a charm!

for anyone interested, i added this:
Spell.Cast("Victory Rush", ret => StyxWoW.Me.HasAura("Victorious") && StyxWoW.Me.HealthPercent < 85)
 
Last edited:
Status
Not open for further replies.
Back
Top