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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

HB ARCHIVES: FishingBuddy--DO NOT DELETE

I get "Compiler Error: error CS0006: Metadata file 'Remoting.dll' could not be found" when hb initializes after puting it in bot folder.

For all people that cant seem to get it to show in HB bot selection,you need to get the SVN folder not the zip.
 
Last edited:
it doesnt work for my rogue 90 undead , i want to farm a fish for feast
it always says
--------------------------------------------------------------------
Starting the bot!
Currently Using BotBase : AutoAngler
AutoAngler[2.102]: Using Dagger of the Seven Stars for mainhand weapon
AutoAngler[2.102]: Using Dagger of the Seven Stars for offhand weapon
This profile does not contain any profiles fitting the character!
Bot Stopped! Reason: This profile does not contain any profiles fitting the character!
AutoAngler[2.102]: Checking for new version
This profile does not contain any profiles fitting the character!
Bot Stopped! Reason: This profile does not contain any profiles fitting the character!
AutoAngler[2.102]: Equipping weapons
AutoAngler[2.102]: In 0 days, 0 hours and 0 minutes we have caught
AutoAngler[2.102]: No updates found
---------------------------------------------------------------------------


then nothing happen
 
Having an issue with AA2 after new installation last night.
I used to use your botbase all the time, but with all the work on the dailies, and constant deleting/reinstalling, I had deleted it from my HB folder.
Reinstalled last night, ran it, and it auto-updated (Both starting and ending on 2.102)

It will path to pools just fine, it will fish just fine. But it does not loot anything after the first fish. The only way to get it to loot the first fish again is with a fresh HB install, but after it loots once, the rest are ignored (loot window opens, moves on to next cast or pool).

I would send a log file, but after review of it myself, there is nothing of value. (Seems AA2 sends no information to the log. There was a start, then 2 minutes later my stop command, with nothing inbetween save for the "your pulse took X seconds" popup I always get, usually around 4 seconds).

Sorry it isn't much to go on...
 
it doesnt work for my rogue 90 undead , i want to farm a fish for feast
it always says
--------------------------------------------------------------------
Starting the bot!
Currently Using BotBase : AutoAngler
AutoAngler[2.102]: Using Dagger of the Seven Stars for mainhand weapon
AutoAngler[2.102]: Using Dagger of the Seven Stars for offhand weapon
This profile does not contain any profiles fitting the character!
Bot Stopped! Reason: This profile does not contain any profiles fitting the character!
AutoAngler[2.102]: Checking for new version
This profile does not contain any profiles fitting the character!
Bot Stopped! Reason: This profile does not contain any profiles fitting the character!
AutoAngler[2.102]: Equipping weapons
AutoAngler[2.102]: In 0 days, 0 hours and 0 minutes we have caught
AutoAngler[2.102]: No updates found
---------------------------------------------------------------------------


then nothing happen


Anyone can help me please ? im really waiting for your helps
 
Compiler Error: error CS0006: Metadatafilen 'Remoting.dll' was not found

Compiler Error: error CS0006: Metadatafilen 'Remoting.dll' blev ikke fundet

Fresh Bot install fresh Autoangler2
 

Attachments

Compiler Error: error CS0006: Metadatafilen 'Remoting.dll' blev ikke fundet

Fresh Bot install fresh Autoangler2

To all those with "Remoting.dll" missing errors, here's how I solved it:

I had the same issue and couldn't find the answer clear and verified by anyone, but as someone else said (at page 101) I tried to install and use the Tortoise SVN compiler and install AutoAngler2 according to the first post - and the AutoAngler2 appeared in my HonorBuddy bot-list without any issues :) It's now working fine with the different profiles!
 
its cant be right you have to download Tortoise SVN compiler before you are getting the right Bot base then you are downloading it. he have to fix his .zip
 
Hi.

I Know that the question was often asked... but I didn't found a solution.

Is there any solution or settings to let my warlock defend itself when he's aggro?

I've try with 2 CC (FPSware and the generic one), search in settings.. but nothing.

When my toon is aggro, he's waiting and get hurts... and do nothing. Solution?
 
Is there any way I can make the bot use Nat's Hat (+150 lure hat, exalted with Nat Pagle)
 
To apply nat's hat and also to use the weatherbaten hat u can use this code below. To keep it simple im just copying the entire code. Just open the file HonorBuddy\Bots\autoangler2\CompositesApplyLureAction.cs delete everything inside. Then just paste the code below directly in. Save and quit, then run honorbuddy.

Note:If a angler update happens it will revert the changes back. Ensure you create a copy of the file, and store it somewhere on your computer. DO NOT store the copy in the same folder. It will cause errors by doing so.

Note:This will also use the weather-beaten fishing hat if it is all you have. The priority is Nat's then Weather-beaten.

using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Styx;
using Styx.WoWInternals;
using Styx.WoWInternals.WoWObjects;
using Styx.TreeSharp;

namespace HighVoltz.Composites
{
public class ApplyLureAction : Action
{
private static readonly Dictionary<uint, string> Lures = new Dictionary<uint, string>
{
{68049, "Heat-Treated Spinning Lure"},
{62673, "Feathered Lure"},
{34861, "Sharpened Fish Hook"},
{46006, "Glow Worm"},
{6533, "Aquadynamic Fish Attractor"},
{7307, "Flesh Eating Worm"},
{6532, "Bright Baubles"},
{6530, "Nightcrawlers"},
{6811, "Aquadynamic Fish Lens"},
{6529, "Shiny Bauble"},
{67404, "Glass Fishing Bobber"},
};

private readonly Stopwatch _lureRecastSW = new Stopwatch();
private readonly LocalPlayer _me = StyxWoW.Me;

protected override RunStatus Run(object context)
{
if (!_me.IsCasting && !Utils.IsLureOnPole && Applylure())
return RunStatus.Success;
return RunStatus.Failure;
}

// does nothing if no lures are in bag
private bool Applylure()
{
if (_lureRecastSW.IsRunning && _lureRecastSW.ElapsedMilliseconds < 10000)
return false;
_lureRecastSW.Reset();
_lureRecastSW.Start();
if (_me.Inventory.Equipped.MainHand != null &&
_me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass != WoWItemWeaponClass.FishingPole)
return false;

// Nat's Hat
WoWItem head = _me.Inventory.GetItemBySlot((uint) WoWEquipSlot.Head);
if (head != null && head.Entry == 88710)
{
AutoAngler.Instance.Log("Appling Nat's Hat to fishing pole");
Utils.UseItemByID(88710);
return true;
}

else

// Weather-Beaten Fishing Hat
if (head != null && head.Entry == 33820)
{
AutoAngler.Instance.Log("Appling Weather-Beaten Fishing Hat to fishing pole");
Utils.UseItemByID(33820);
return true;
}

//Awesome panda lure
WoWItem pandalure = StyxWoW.Me.BagItems.FirstOrDefault(r => r.Entry == 85973);
if (pandalure != null && !_me.HasAura(125167))
{
AutoAngler.Instance.Log("Appling awesome panda lure");
Utils.UseItemByID(85973);
return true;
}

foreach (var kv in Lures)
{
WoWItem lureInBag = Utils.GetIteminBag(kv.Key);
if (lureInBag != null && lureInBag.Use())
{
AutoAngler.Instance.Log("Appling {0} to fishing pole", kv.Value);
return true;
}
}
return false;
}
}
}
 
Last edited:
Tried reinstalling HB and redownloaded all the bot-bases/plugins. For some reason AA2 isn't applying my Pandaren Fishing Charm. I have no lures/fishing equipment in my inventory; just the fishing charm. Does it need to be in a particular inventory slot or do I need some lures/fishing hats to get it detected?
 
If UseWaterWalking is False the bot can not determine the correct point for fishing.
He flies into the water and jumps there indefinitely.
 

Attachments

haha this is awesome :D I used to use Pirox and this is just perfect :D and better thanks so much for your time highvoltz
 
Not using pandaren charm anymore on any of my farmers. I can't see the point of posting 5 different logs.... unless you need it.
 
Alright Ive got a question for you guys.

This AutoAngler2, will that also "pickup" the Old Ironjaw? It appears to be bop?
 
Last edited:
I don't know why, but I've tried some things to get AA2 to work using a toons natuarl water walking abilities (shaman and my priest's Levitate) and my toons will not use them. IE; Priest has levitate and AA2 won't use it even if I have the priest already levitationg before I start AA2 . So the question is or are, Will AA use the toon ability or is there a plugin we have to use or just is it I'm not setting something right? AA fishing fine stationary and will fly to the nearest pool where the tooon can stand on land. I've searched through at least a hundred posts in the past month trying to find an answer and now here I am frustrated in looking more for one. Help please?
 
my auto angler is not catching fish. it clicks the bobber and the loot window opens but doesnt loot the fish. I have auto loot on with no key bindings.
Its seems like its not clicking the bobber fast enough because I can catch fish manually just fine.
Auto angler is broken??
no errors.. just not catching. looting fish
Help =[
 
Hey I am been trying to use this to fish up deviate fish, but the bot just stops after 1 minute. Can somebody help me?
 
Can someone please fix the fishing bot :/ mine wont loot the fish after it catches them, I have autoloot on with no key binds. If I fish manually I autolot fish no problem.

Please fix the fishing bot :)

Thank you
 
Back
Top