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

Questing Bot using Stealth

Draffon

New Member
Joined
Jan 14, 2011
Messages
28
Reaction score
0
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.
 
Ok, going to tinker with the CC ill post here if i make any progress
 
Ok, going to tinker with the CC ill post here if i make any progress

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 :)
 
Ok, going to tinker with the CC ill post here if i make any progress

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. :D (I hated college textbooks that copped out on the hard stuff with that explanation!)

cheers & good luck with your endeavor,
chinajade
 
Back
Top