• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Camping Aeonaxx. Ways to keep from becoming afk?

    Discussion in 'Archives' started by clarinetfreak, Jan 2, 2011.

    1. clarinetfreak

      clarinetfreak New Member

      Joined:
      May 2, 2010
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0
      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?
       
    2. Quarian

      Quarian Member

      Joined:
      Jan 15, 2010
      Messages:
      116
      Likes Received:
      1
      Trophy Points:
      18
      Make a profile that runs you around in circles?
       
    3. iwin

      iwin New Member

      Joined:
      Dec 12, 2010
      Messages:
      160
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    4. clarinetfreak

      clarinetfreak New Member

      Joined:
      May 2, 2010
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0
      There's got to be a way =[
       
    5. CodenameG

      CodenameG New Member

      Joined:
      Jan 15, 2010
      Messages:
      38,369
      Likes Received:
      231
      Trophy Points:
      0
      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.
       
    6. legiion

      legiion New Member

      Joined:
      May 2, 2010
      Messages:
      302
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    7. clarinetfreak

      clarinetfreak New Member

      Joined:
      May 2, 2010
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0
      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! :)
       

    Share This Page