Hi, I'm trying to use this profile and when I load it then start it all my character does is hit levitate over and over. Any idea on what I could do to get this working for me? My character is a priest of course. Thanks!
Okay, I changed Water Walking "false" and it works now. I think the issue with the Water Walking selection has to do with AutoAngler2 and not the profile. Hopefully there will be a fix for it "soon".
Yeah it seems it's a bit buggy but I am starting to think Zap Recorder has something to do with it. I noticed profiles with tons of hotspots get alot of stop and go issues.
Amazing fishing profile! been using it for a few days now and I have made more than enough gold to last for whole MoP I bet! So many Thanks from me! and keep up the good work!
Dont know how it happend but I someonehow obtained the sea turtle using this profile, so that was a pleasant suprise, thanks alot! AutoAngler[2.98]: In 0 days, 4 hours and 14 minutes we have caught AutoAngler[2.98]: Reef Octopus x5 AutoAngler[2.98]: Emperor Salmon x368 AutoAngler[2.98]: Sealed Crate x28 AutoAngler[2.98]: Krasarang Paddlefish x203 AutoAngler[2.98]: Jade Lungfish x4 AutoAngler[2.98]: Sea Turtle x1
Tried the profile first time today and it works fine fishing ways but it never loots. Even with and without autoloot it never loots for me. Had some problems with HB before where I had to reboot computer to get it to work with other bots/profiles so will try that now
nice picture ;-) I have tried a other profil of your's yesterday which has been realy greate. I think autoangler has two settings, one for flying and one for poolflishing; maybe if you disable flying it rides.
I also got the sea turtle from fishing with this bot - unforunately I closed the bot without thinking of posting the logs... PS: Is it possible to get a mailbox coded in at half hill? Bags filled up LOL
The IsActive section of WaterWalking.cs is searching for the wrong priest levitate aura. Priest Levitate causes two seperate auras depending on Glyph of Levitate. Unglyphed = 111759 and Glyphed = 111798. The Priest Glyph of the Heavens does not affect either of the two primary auras. I applied a fix to the file and it now works as intended. I tested it by canceling levitate and swapping glyphs while levitate was active and inactive. AutoAngler handled the scenarios fine and continued to fish and apply levitate as appropriate. Below is a snippet showing the correction. Code: public static bool IsActive { get { // DKs have 2 Path of Frost auras. only one can be stored in WoWAuras at any time. // Priest Levitate causes two seperate auras depending on Glyph of Levitate. Unglyphed = 111759 Glyphed = 111798 // Priest Glyph of the Heavens does not affect aura return StyxWoW.Me.Auras.Values. Count(a => (a.SpellId == 11319 || a.SpellId == 111759 || a.SpellId == 111758 || a.SpellId == 546) && a.TimeLeft >= new TimeSpan(0, 0, 20)) > 0 || StyxWoW.Me.HasAura("Path of Frost"); } } TY Highvoltz for the awesome fishing bot. from: http://www.thebuddyforum.com/honorb...oangler-2-pool-stationary-fishing-bot-63.html gl