• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • My differents bugs.

    Discussion in 'Honorbuddy Support' started by anonymou, Nov 26, 2012.

    1. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      Hello all,

      I have several problems with my herb gatherer druid.

      1st, sometimes he didn't wait enough to get the herb in his bag before flying, so he comes back, and gather again, can happen 2-3 times.

      2nd, when i'm gathering snow lily in Kunlai summit, my druid DC when he tries to gather en herb near a rock (every big rocks actually), so i can't afk during hours :(

      I'm using the plugin : "[Plugin][Niv] Druid Harvest Helper" to prevent changeform. The problems stay without any plugin.
      And i'm using the latest version of Honorbuddy.

      Char : Herbo Druid/Tauren/lvl 90. 310% flying form.
       
    2. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
    3. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      Ok, i will wait i get an error, and i will post my log file :)
       
    4. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      you can see on this log where i've been disconnected, and you can see that i need sometimes 3 times to gather herb.

      thx a lot for reply
       

      Attached Files:

    5. cls15

      cls15 New Member

      Joined:
      Oct 27, 2012
      Messages:
      42
      Likes Received:
      0
      Trophy Points:
      0
      Your method shouldn't return before loot end.
      try to paste that within your code after the interact action...
      Stopwatch lootTimer = new Stopwatch();
      // wait for loot frame to apear
      lootTimer.Reset();
      lootTimer.Start();
      while (LootFrame.Instance == null || !LootFrame.Instance.IsVisible)
      {
      if (lootTimer.ElapsedMilliseconds > 5000)
      {
      Log("Loot window never showed up!");
      return;
      }
      Thread.Sleep(100);
      }
      Lua.DoString("for i=1,GetNumLootItems() do ConfirmLootSlot(i) LootSlot(i) end");
      // wait for lootframe to close
      lootTimer.Reset();
      lootTimer.Start();
      while (LootFrame.Instance != null && LootFrame.Instance.IsVisible )
      {
      Thread.Sleep(100);
      if (lootTimer.ElapsedMilliseconds > 5000)
      {
      Log(System.Drawing.Color.Red,"looks like you have some addon interfering with loot. Disable any looting addons pls");
      return;
      }
      }
       
    6. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      Ty for your reply, but i'm not a pro. What file have I to modifier ? and what line i have to put your code ?
       
    7. cls15

      cls15 New Member

      Joined:
      Oct 27, 2012
      Messages:
      42
      Likes Received:
      0
      Trophy Points:
      0
      I just get your cc to see how it worked.
      Forget what I just told you before...

      Is your plugin mark as available ? I don't see trace of it in your logs ?
       
    8. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      i didn t gather with the harvest_druid plugin to be sure he doesn't interact.

      Do u have an idea to resolve my 2 problems ?
       
    9. cls15

      cls15 New Member

      Joined:
      Oct 27, 2012
      Messages:
      42
      Likes Received:
      0
      Trophy Points:
      0
      I'm starting to believe that the fact our system is in french can interfere with some of the bot functions.
      Anyone could validate (or invalidate) this statement?
       
    10. anonymou

      anonymou New Member

      Joined:
      Nov 25, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      someone can help me ?
       
    11. bambam922

      bambam922 Well-Known Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      6,071
      Likes Received:
      28
      Trophy Points:
      48
      The bot works fine with using Singular and nothing else.
      No other plugins *should*be necessary to gather.

      You can try using another combat routine.
      I always used Superbad.
       

    Share This Page