• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • HB ARCHIVES: FishingBuddy--DO NOT DELETE

    Discussion in 'Archives' started by chinajade, Feb 8, 2012.

    1. crayonofdoom

      crayonofdoom New Member

      Joined:
      Sep 30, 2012
      Messages:
      27
      Likes Received:
      1
      Trophy Points:
      0
      Tried a lot of the fixes in these. Still getting the choppy flight with ~30s pauses every so often.

      UPDATE: Ran it for a long time. It's got something to do with loading assets or caching something because it fixes after ~1hr and gets really smooth.
       
      Last edited: Oct 2, 2012
    2. highvoltz

      highvoltz Well-Known Member

      Joined:
      Mar 22, 2010
      Messages:
      1,729
      Likes Received:
      141
      Trophy Points:
      63
      Afraid it's nothing I can do then without replacing Flightor. Could try setting PathPrecision to a much higher value.
       
    3. Gatherit

      Gatherit New Member Buddy Store Developer

      Joined:
      Aug 28, 2010
      Messages:
      2,331
      Likes Received:
      68
      Trophy Points:
      0
      I'll do some more testing and get back with you. I have went as high as 35 with no changes so far.
       
    4. stickytrees

      stickytrees New Member

      Joined:
      Aug 18, 2012
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      I've done a clean install of HB and downloaded AA2 but when ni load HB AA2 doesn't show up in my bot list please help
       
    5. Ic3Tig3r

      Ic3Tig3r New Member

      Joined:
      Feb 4, 2012
      Messages:
      13
      Likes Received:
      0
      Trophy Points:
      1
      same problem


      Edit:

      fixed by install via SVN
       
      Last edited: Oct 3, 2012
    6. Fla5hback

      Fla5hback New Member

      Joined:
      Dec 17, 2011
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      1
      thx for that! It now works fine.
       
    7. Kalicia

      Kalicia New Member

      Joined:
      Jul 13, 2012
      Messages:
      32
      Likes Received:
      0
      Trophy Points:
      0
      Hi,
      I installed AA2 by using SVN but AA2 doesn't show up in my bot list. I tried to reboot, reinstall, supress plugins and addons but nothing happend.
      Any idea?
       
    8. ChrillePan

      ChrillePan New Member

      Joined:
      Dec 5, 2011
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      "Compiler Error: error CS0006: Die Metadatendatei "Remoting.dll" konnte nicht gefunden werden."

      This Problem appears with the newest Version of Honorbuddy,
      how can I fix it?

      Grtz Chrille
       
    9. ChrillePan

      ChrillePan New Member

      Joined:
      Dec 5, 2011
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Okay, the SVN worked, but not the attached Zip File :/

      Nevermind..
       
    10. ChrillePan

      ChrillePan New Member

      Joined:
      Dec 5, 2011
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Another question!
      How can I fish on a single place? Without a profile?

      Grtz Chrille
       
    11. me28791

      me28791 New Member

      Joined:
      Aug 7, 2011
      Messages:
      42
      Likes Received:
      0
      Trophy Points:
      0
      bot config then under the title fishing change poolfishing from true to false
       
    12. Knucklehead

      Knucklehead New Member

      Joined:
      Jan 15, 2010
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      Alright. There is a problem with AA2 and the amount of wait time between each coordinate in a profile.

      There is, however, a fix. Go into your Bot Config for AA2 and change 'Pathing Type' to 'Bounce' instead of 'Circle'. There is something screwed up in the programming for the 'Circle' pathing type, but the 'Bounce' type works GREAT.
       
    13. tyman102938

      tyman102938 New Member

      Joined:
      Mar 15, 2012
      Messages:
      80
      Likes Received:
      0
      Trophy Points:
      0
      How do you fix the constant spam of levitate?? That's all it will do for me unless I turn off waterwalking on AA. Any ideas?
       
    14. s.s.tripwire

      s.s.tripwire New Member

      Joined:
      Dec 10, 2011
      Messages:
      109
      Likes Received:
      0
      Trophy Points:
      0
      So, my bot will fish just fine but its not looting anything when the bobber is tagged. Any ideas on how to fix that?
      **edit**
      Only addon I have is Auctionator, and it is disabled. I have disabled all plugins.
      **edit**
      Added log
       

      Attached Files:

      Last edited: Oct 4, 2012
    15. toolboy

      toolboy New Member

      Joined:
      Feb 14, 2011
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Mine has excessive wait time point to point in both pathing modes. I wonder what is different between you and me.
       
    16. toolboy

      toolboy New Member

      Joined:
      Feb 14, 2011
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Another Tweak for the bot

      When pool fishing, you do not need to equip a pole anymore, so a line of code change, and bot will not equip pole while poolfishing, but will if not.
      in the EquipPoleAction.cs Composite change the RunStatus from:

      Code:
             protected override RunStatus Run(object context)
              {
      			if (_me.Inventory.Equipped.MainHand == null ||
                      _me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole)
                  {
                      if (EquipPole())
                          return RunStatus.Success;
                  }
                  return RunStatus.Failure;
              }
      
      to:
      Code:
              protected override RunStatus Run(object context)
              {
      			if ((_me.Inventory.Equipped.MainHand == null ||
                      _me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole) && 
      				(!AutoAngler.Instance.MySettings.Poolfishing))
                  {
                      if (EquipPole())
                          return RunStatus.Success;
                  }
                  return RunStatus.Failure;
              }
      
      the only change is the if statement from:
      Code:
      if (_me.Inventory.Equipped.MainHand == null ||
          _me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole)
      to:
      Code:
      if ((_me.Inventory.Equipped.MainHand == null ||
           _me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole) &&
           (!AutoAngler.Instance.MySettings.Poolfishing))
      instead of checking if "I have no weapon" or "the weapon is not a fishing pole" then equip a pole we check if "I have no weapon" or "the weapon is not a fishing pole" AND I am not poolfishing then equip a pole
       
    17. migl27

      migl27 New Member

      Joined:
      Mar 21, 2011
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      0
      just made that change in code and its still changing weapons :(
       
    18. Kink

      Kink Member

      Joined:
      Nov 15, 2011
      Messages:
      336
      Likes Received:
      10
      Trophy Points:
      18
      Same with this user, it is not looting. Even though auto loot is working fine when manually fishing.
       
    19. Gatherit

      Gatherit New Member Buddy Store Developer

      Joined:
      Aug 28, 2010
      Messages:
      2,331
      Likes Received:
      68
      Trophy Points:
      0
      I'd rather just put my fishing pole in my bank so I dont have to change code.
       
    20. daemon9

      daemon9 New Member

      Joined:
      Feb 11, 2011
      Messages:
      528
      Likes Received:
      5
      Trophy Points:
      0
      Shaman just stands there casting Water Walking over and over...not sure what the problem is.. View attachment 6340 2012-10-04 17.27.txt



      Edit: Had to disable Water Walking to get him to fish. Still not sure what the conflict is.
       
      Last edited: Oct 4, 2012

    Share This Page