I am trying to figure out how to camp Aeonaxx on my main character. My main doesn't herb or mine so I can't really just gather nodes in Uldum and hope to wake up to NPCScan. Is there a way to just use HB to keep from going afk without moving too much?
think the biggest problem you would have is hb doesnt fly... havent looked into how close the mob goes to somewhere you can stand, but by looking at the fight mechanics i would say it's going to be quite difficult... though with gb you can tell it to not farm any nodes and just have it fly in the circle over and over and over until eventually it pops up... but again not afkable afaik.
Code: public override void Pulse() { Stopwatch AfkTimer = new Stopwatch(); while (Styx.Logic.BehaviorTree.TreeRoot.IsRunning && !Me.Combat) { if (!AfkTimer.IsRunning || AfkTimer.Elapsed.Minutes > 3) { Styx.StyxWoW.ResetAfk(); AfkTimer.Reset(); AfkTimer.Start(); } Thread.Sleep(100); } } thats your basic anti-afk plugin with mr.autofight code. so it will only fight if something bumps into you and puts you into combat, but other wise it will sit there, and every 3 min, pulse() honorbuddy's anti-afk code preventing you from going afk.
G I dont understand what we are suposed to do with the code you posted above. I am interested in droping one of my friends char in the spawing zone for this drake over nigth to see if I fish anything up.
Idk if I did what was intended but I DL'd Mr AutoFight and inserted the script provided by Codename by replacing the corresponding public override function in the original code... and it seems to work!