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

rogue singular does not use recup / healthpots - combat spec

messycan

Member
Joined
Sep 6, 2012
Messages
259
Reaction score
0
Hello I am using a grind profile to farm some mobs to lvl up and my rogue holds her own but she just won't cast recup nor use healthpots (MoP) that i sent her from my alchemist. any ideas on what i can do on my side or where i can insert information to cast recup and pop health pots at 40% mana? i have tried advanced bot and class configs with no success


other than that it's running like a dream
 
Code:
Spell.BuffSelf("Recuperate", ret => StyxWoW.Me.RawComboPoints > 4 && !StyxWoW.Me.HasAura("Recuperate")),

Put that below the line with slice and dice. Basically it'll check if you have recuperate, and if you don't it'll use it after you have 4 combo points and if you have slice and dice up already.
 
so it should look like this?


Spell.Cast("Revealing Strike", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Revealing Strike")),
Spell.BuffSelf("Slice and Dice", ret => StyxWoW.Me.RawComboPoints > 0 && !StyxWoW.Me.HasAura("Slice and Dice")),
Spell.BuffSelf("Recuperate", ret => StyxWoW.Me.RawComboPoints > 3 && !StyxWoW.Me.HasAura("Recuperate")),
Spell.Buff("Rupture", true,
ret => SingularSettings.Instance.Rogue.CombatUseRuptureFinisher && StyxWoW.Me.ComboPoints >= 4 &&
StyxWoW.Me.CurrentTarget.Elite && StyxWoW.Me.CurrentTarget.HasBleedDebuff()),
 
Back
Top