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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

What are the key commands for PureSWTOR and UnpureSWTOR Routines?

These are still in the works and will experience some changes when UI is implemented..

Toggle AOE (F7) (not yet committed)
Pause Rotation (F8)
Pause Rotation (F9)
Disable/Enable Movement (F10)
Disable/Enable Targeting (F11)
Disable/Enable All (F12)
 
Ama quick question,

as a Jedi Guardian, I have discovered, that the roation waits for Bladestorm or Sundering Strike without using Slash. Is that working as intended?

Myra
 
which spec are you talking about?
only Focus is not using slash all others should as soon as we got more or equal to 11 Focus
 
Spell.Cast("Force Kick", ret => Me.CurrentTarget.IsCasting && !LazyRaider.MovementDisabled),
Spell.Cast("Dispatch", ret => Me.CurrentTarget.HealthPercent <= 30 && Me.ActionPoints >= 3),
Spell.Cast("Guardian Slash", ret => Me.ActionPoints >= 4),
Spell.Cast("Blade Storm"),
Spell.Cast("Hilt Strike", ret => Me.ActionPoints >= 3 && !Me.CurrentTarget.IsStunned),
Spell.Cast("Master Strike", ret => !Me.IsMoving),
Spell.Cast("Slash", ret => Me.ActionPoints >= 11),
Spell.Cast("Sundering Strike", ret => Me.ActionPoints <= 7 || !Me.CurrentTarget.HasDebuff("Armor Reduced")),
Spell.Cast("Strike", ret=> Me.ActionPoints <= 9),
Spell.Cast("Riposte"),
Spell.Cast("Saber Throw", ret => Me.CurrentTarget.Distance >= 0.5f && Me.InCombat)
this is the rotation for that spec atm.
it's working it's way from top to bottom if the requirement are met.
so it should cast Blade Storm on CD and Sundering Strike to keep the debuff up and is below 7 Focus.
Slash should cast if none of the above is available or it's conditions return "false" and you have 11 or more Focus

so for example you have 11 Focus and just casted Master Strike
now pure will check again:
is the target casting and is Force Kick not on Cooldown? If yes it will interrupt again -> start again from top
then it will check if the target is below 30% hp, you have more or equal to 3 Focus and if Dispatch is not on Cooldown. if this is the case it will cast Dispatch -> start again from top
next would again be is guardian slash on cooldown and do i have 4 or more Focus? -> casts Guardian Slash -> start again from top
is blade storm on cd? no -> cast Blade Storm -> start again from top
is the enemy not stunned and do i have more or equal to 3 Focus and Hilt Strike is not on Cooldown? -> Cast Hilt Strike -> start again from top
is Master Strike on cooldown and am i not moving? -> cast Master Strike -> start again from top
do i have more or equal to 11 Focus -> use Slash!

so as you can see slash is pretty low in the priority but should still be used from time to time
 
Last edited:
you're welcome ;-)

we pretty much took all rotations from Noxxic - Stay Epic
so if you find something that is not optimal or if the bot should at some points do something else please tell us.
we don't know all classes and aren't theorycrafter ;-)
 
Back
Top