I have a profile I am running on my druid that I would like for him to stealth in between hotspots, how would i go about doing this? For example, toon pulls and kills pack--> Heals--> loots-->Cat Form --> Prowl--> Heads to next mob How would i go about that?
I don't think that's possible. Uncheck "Kill between hotspots" if you haven't already, can't get better than that I think.
Now when you mention it, I remember a rogue or druid cc with an option "always stealthed". ill see if i can find anything
AW: Questing Bot using Stealth Superbad has this feature. Settings -> Page2 -> use stealth if not in combat. Disable use mount @ Hb settings. ---> done
Hi, Draffon, Probably the easiest thing to do would be make a plugin whose Pulse() method looks something like the following: private Stopwatch _oocDelayTimer = new Stopwatch(); public override void Pulse() { if (Me.Combat) { _oocDelayTimer.Restart(); return; } if (Me.IsCasting) return; if (Me.IsDead) return; if (_oocDelayTimer.Seconds < 3) return; if (!Me.ActiveAuras.Contains("Cat Form")) { if (!SpellManager.CanCast("Cat Form")) return; SpellManager.Cast("Cat Form"); return; } if (!Me.ActiveAuras.Contains("Prowl")) { if (!SpellManager.CanCast("Prowl")) return; SpellManager.Cast("Prowl"); return; }} The code is off the top of my head, and obviously not been tested. There are probably a number of boundary-conditions that have not been addressed, but those are left as an exercise for the reader. (I hated college textbooks that copped out on the hard stuff with that explanation!) cheers & good luck with your endeavor, chinajade