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

Move to loot while executing rest routine?

Hewk

New Member
Joined
Jan 15, 2010
Messages
23
Reaction score
0
I've got the following simple rest behavior for re-stealthing my rogue after combat (rogues move faster in stealth now so no reason to not always have it on).

Code:
private Composite CreateRestBehavior {
    get {
        return new PrioritySelector(
	    new Decorator(ret => !Me.HasAura("Stealth"),
	        new Action(ret => SpellManager.Cast("Stealth"))
	));
    }
}

The issue I'm having is that on 1-hit kills (farming lowbies for pets etc.), my toon is waiting until he can stealth, before moving to loot. It looks awkward and bot-ish. Is there a way to run the rest behavior WHILE he moves to loot, or will there always be that awkward pause after a kill?
 
Back
Top