I have managed to get the bot to use bait appropriately in the Garrison however it cripples the bot outside of the Garrison. So now i am trying to detect the fish being caught or the location of the player to decide what bait to use. I did this poorly however as most of the code is in the Coroutine.Lure.cs as i was not able to make a Coroutine.Bait.cs and get it to work properly, most of this is over my head. If anyone has any pointers or info that would be great. I am using Visual Studio 2013 Express at the moment.where i can add bait to bot use every 5 min?
So I've been doing Nat Pagle reputation grind for the new mount and pet, so I've been using AutoAngler 2 to do my fishing for me, I've noticed a lack of lunkers recently even though I've been getting a lot, and noticed this today: http://i.imgur.com/BaPc6yq.png it says I got 9 lunkers (maximum allowed in inventory is 5) but the thing is I don't have a single one in my inventory, what could be causing this?
I have the Mastercraft Kalu'ak Fishing Pole, which the Bot equpts just fine, but from I have also fished up the Ephemeral Fishing Pole (+100 Fishing Skill) which I'd like to use if I have it available in my bag. BUT, where to edit?
WoWItem pole = Me.BagItems
.Where(i => i != null && i.IsValid
&& i.ItemInfo.WeaponClass == WoWItemWeaponClass.FishingPole)
.OrderByDescending(i => i.ItemInfo.Level)
.FirstOrDefault();
Its not fishing inside Garrison :S Am I doing something wrong ?
Nevermind, found out it was the WoW Addon EasyLootAfter the latest HB release AutoAngler has been very slow. After successfully catching a fish, it waits 5-6 seconds before casting again. I've never had this problem before, didn't change anything, but I tried reinstalling everything and it still doesn't work fast like it used to. 5-6 seconds per cast is a lot of wasted fishing time...
Hi, i am having the following problem:
Everytime i run the bot it immediately hearthstones me and logs out, nomatter what profile i use.
So, for now i have changed the Coroutines.cs to ignore my hearthstone nomatter what, but that seems suboptimal, has anyone else had this problem?.
So, sorry it took me so long to actually respond/find this, but if this actually works, you are a champion. Never would have found that.Edit the file Bots\AutoAngler2\Coroutines.Lure.cs and find
Code:{68049, "Heat-Treated Spinning Lure"},
add before:
Code:{118391, "Worm Supreme"},
Find
Code:{6529, "Shiny Bauble"},
add below:
Code:{67404, "Glass Fishing Bobber"},
You may also want to add the new head items. To do so, edit Bots\AutoAngler2\Util.cs and find
Code:88710, // Nat's Hat
add below:
Code:117405, // Nat's Drinking Hat 118380, // Hightfish Cap 118393, // Tentacled Hat
In the same file, you will find
Code:33820, // Weather-Beaten Fishing Hat
Comment out this line, if you dont want to use "Weather-Beaten Fishing Hat". So it should look like this:
Code:internal static readonly uint[] FishingHatIds = { //33820, // Weather-Beaten Fishing Hat 88710, // Nat's Hat 117405, // Nat's Drinking Hat 118380, // Hightfish Cap 118393, // Tentacled Hat };