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

[Release] Honorbuddy 2.0.0.5462

Status
Not open for further replies.
Archaeology Bot is BROKEN :( I left it running 5 hours over night and not even 1 dig. It stands in place after doing a survey or killing a mob. the 1 time it did find a solve, I had to click on it manually to get it. Most the time I cant even get it to survey. From reading through the logs, it appears it can't loot any finds.

Code:
[8:46:05 AM:534] >>> STOPPING ShamWOW v4.3.15 by Bobby53
[8:46:05 AM:535] Changed tilemap to Kalimdor, Tiled: True
[8:46:05 AM:537] Changing current profile to Twilight Highlands Skinning
[8:46:05 AM:537] [ArchBuddy]: Stopped Archaeologybuddy after clearing 0 digsites in 4h 57m 30s.
[8:46:05 AM:537] [ArchBuddy]: Solve Report:
[8:46:05 AM:537] [ArchBuddy]: ---------------------------
[8:46:05 AM:537] [ArchBuddy]: No solves
[8:46:05 AM:538] Activity: Honorbuddy Stopped

LOG: I will do what i can to attach this log, but it was over 20MB! Really? Larger then 20MB? HOW, that's bigger the the whole last wow patch. Already spent 10 min trying to chop it down, got it to 10MB, still WAY WAY WAY to big to upload.

EDIT: Still trying to edit this log, dont think its gonna happen. Deleting 99% of the log just to make it fit as an attachment might not be too helpful. I started in Uldum if that's at all helpful.

If this is helpful, Im getting spammed with this 25 times per sec while my bot stood in 1 place for 5 hours.
Code:
[6:30:46 AM:314] %   Totem Recall CheckForSafeDistance(49.5): saw Warrior - Schnottz Overseer.BEE4[84] around 50 yds away
[6:30:46 AM:450] %   IncludeTargetsFilter:  got alive pet(s) and added 0 mobs targeting them
[6:30:46 AM:468] %   Pulse:  no current target, but live pet

THIS LOG IS EDITED. I had to delete 99% of the log and isolate 1 small problem area to show this.

LOG -->
View attachment part1.txt
 
Last edited:
Was your Boneshield on Cooldown? I have no idea what the CD is on Boneshield. It had like a 30-40 second delay and then casted Boneshield.

Also, if you keep getting pathing issues, in HB, Setting & Tools, (checkmark)Advanced Mode, you'll see where it stores the Meshes at. go delete all the stuff in that folder.

Boneshield might be causing this issue, I have noticed that my DK will not use any skills while in combat with a new mob and Boneshield is on cooldown. I am using the default Singular CC which has Boneshield as a higher priority than many of my skills, other than moving to and facing the target, death grip and auto attack.... so is there a way to make Singular only cast Boneshield when it isn't on cooldown? Code from the CC is below

Code:
namespace Singular
{
    partial class SingularRoutine
    {
        [Class(WoWClass.DeathKnight)]
        [Spec(TalentSpec.BloodDeathKnight)]
        [Behavior(BehaviorType.Combat)]
        [Context(WoWContext.All)]
        public Composite CreateBloodDeathKnightCombat()
        {
            NeedTankTargeting = true;
            return new PrioritySelector(
                CreateEnsureTarget(),
                CreateAutoAttack(true),
                CreateFaceUnit(),
                // Blood DKs are tanks. NOT DPS. If you're DPSing as blood, go respec right now, because you fail hard.
                // Death Grip is used at all times in this spec, so don't bother with an instance check, like the other 2 specs.
                CreateSpellCast("Death Grip", ret => Me.CurrentTarget.Distance > 15),
                //Make sure we're in range, and facing the damned target. (LOS check as well)
                CreateMoveToAndFace(5f, ret => Me.CurrentTarget),
                CreateSpellBuffOnSelf("Bone Shield"),
                CreateSpellCast("Rune Strike"),
                CreateSpellCast("Mind Freeze", ret => Me.CurrentTarget.IsCasting || Me.CurrentTarget.ChanneledCastingSpellId != 0),
                CreateSpellCast("Strangulate", ret => Me.CurrentTarget.IsCasting || Me.CurrentTarget.ChanneledCastingSpellId != 0),
                CreateSpellBuffOnSelf("Rune Tap", ret => Me.HealthPercent <= 60),
                CreateSpellCast(
                    "Pestilence", ret => Me.CurrentTarget.HasAura("Blood Plague") && Me.CurrentTarget.HasAura("Frost Fever") &&
                                         (from add in NearbyUnfriendlyUnits
                                          where !add.HasAura("Blood Plague") && !add.HasAura("Frost Fever") && add.Distance < 10
                                          select add).Count() > 0),
                new Decorator(
                    ret => SpellManager.CanCast("Death and Decay") && NearbyUnfriendlyUnits.Count(a => a.Distance < 8) > 1,
                    new Action(
                        ret =>
                            {
                                SpellManager.Cast("Death and Decay");
                                LegacySpellManager.ClickRemoteLocation(Me.CurrentTarget.Location);
                            })),
                CreateSpellCast("Icy Touch"),
                CreateSpellCast("Plague Strike", ret => !Me.CurrentTarget.HasAura("Blood Plague")),
                CreateSpellCast("Death Strike", ret => Me.HealthPercent < 80),
                CreateSpellCast("Blood Boil", ret => NearbyUnfriendlyUnits.Count(a => a.Distance < 8) > 1),
                CreateSpellCast("Heart Strike"),
                CreateSpellCast("Death Coil"));
        }
    }
}
 
Archaeology Bot is BROKEN :( I left it running 5 hours over night and not even 1 dig. It stands in place after doing a survey or killing a mob. the 1 time it did find a solve, I had to click on it manually to get it. Most the time I cant even get it to survey. From reading through the logs, it appears it can't loot any finds.

Code:
[8:46:05 AM:534] >>> STOPPING ShamWOW v4.3.15 by Bobby53
[8:46:05 AM:535] Changed tilemap to Kalimdor, Tiled: True
[8:46:05 AM:537] Changing current profile to Twilight Highlands Skinning
[8:46:05 AM:537] [ArchBuddy]: Stopped Archaeologybuddy after clearing 0 digsites in 4h 57m 30s.
[8:46:05 AM:537] [ArchBuddy]: Solve Report:
[8:46:05 AM:537] [ArchBuddy]: ---------------------------
[8:46:05 AM:537] [ArchBuddy]: No solves
[8:46:05 AM:538] Activity: Honorbuddy Stopped

LOG: I will do what i can to attach this log, but it was over 20MB! Really? Larger then 20MB? HOW, that's bigger the the whole last wow patch. Already spent 10 min trying to chop it down, got it to 10MB, still WAY WAY WAY to big to upload.

EDIT: Still trying to edit this log, dont think its gonna happen. Deleting 99% of the log just to make it fit as an attachment might not be too helpful. I started in Uldum if that's at all helpful.

If this is helpful, Im getting spammed with this 25 times per sec while my bot stood in 1 place for 5 hours.
Code:
[6:30:46 AM:314] %   Totem Recall CheckForSafeDistance(49.5): saw Warrior - Schnottz Overseer.BEE4[84] around 50 yds away
[6:30:46 AM:450] %   IncludeTargetsFilter:  got alive pet(s) and added 0 mobs targeting them
[6:30:46 AM:468] %   Pulse:  no current target, but live pet

THIS LOG IS EDITED. I had to delete 99% of the log and isolate 1 small problem area to show this.

LOG -->
View attachment 30114

DJKid, 1) anytime your log is too big, just zip it. Text compresses 80-90% so would be no problem to upload after that... 2) have you disabled all WoW addons? I know that Archy is one addon that definetely gets in the way of AB.. AB will try to solve an artifact but will just sit there.

Just some suggestions... hope they help.
 
I see none of that. This is one HB and Wow running on my laptop.
View attachment 30111

As for me it can only be noticed when you are running more than 10 bots... on previous releases (pre 4.2) i could run over 17 bots on my pc and continue to work or play on it, but now - when i start at least 13 of them my CPU is used for 95-100% all the time :(
 
As for me it can only be noticed when you are running more than 10 bots... on previous releases (pre 4.2) i could run over 17 bots on my pc and continue to work or play on it, but now - when i start at least 13 of them my CPU is used for 95-100% all the time :(

It sounds like this is effecting either ppl with fast machines that use several bots at once... or ppl that use underpowered machines with even 1 instance running. I kinda fall under the 2nd group right now and have noticed that my machine is bogging down now more than it did before. I started using Game Booster which seems to be helping for now.

I'm going to be replacing the 3 computers that we're using starting in Feb or so... (Christmas for the kids comes first)...
 
I thought it was only my problem regarding CPU.. 3 bots here and I can't really do anything else now :/
 
Don't have time to post a log but the targeting is definitely broken, it runs past mobs, and when it does decide to fight it runs circles around the mob without attacking.
 
Another error. Dont know if this is HB or wow. Im trying to use my fishing bots, and after a couple minutes WoW just closes. 1st I used MrFishIt, I went to go smoke and came back and WoW was closed. Restarted it and got a drink, again it was closed when I came back. So I started AutoAngler2, turned off pool fishing, and took a shower. Same thing when I came back. There were no error messages stating WoW had crashed like HB normally does 15+ times a day. Because there was no error message and wow just closed, I was wondering if this could be WoW or Warden rather then HB? I'm gonna play it safe and not use the fishing bots for now.

#1 MrFishIt: View attachment 12-4-2011_2_00 PM 2424 Log.txt
#2 MrFishIt: View attachment 12-4-2011_2_15 PM 2016 Log.txt
#3 AutoAngler2: View attachment 12-4-2011_2_28 PM 2232 Log.txt
 
Last edited:
Boneshield might be causing this issue, I have noticed that my DK will not use any skills while in combat with a new mob and Boneshield is on cooldown. I am using the default Singular CC which has Boneshield as a higher priority than many of my skills, other than moving to and facing the target, death grip and auto attack.... so is there a way to make Singular only cast Boneshield when it isn't on cooldown? Code from the CC is below

I did notice that Singular might be having some problems pausing to wait for a Cooldown. I'll look into it.
For now head to the Honorbuddy -> Classes (sub)Forum and grab the Singular V2 from Strix's SVN. ( http://www.thebuddyforum.com/honorb...riven-all-one-cc-just-plain-works-pt-2-a.html )

Don't have time to post a log but the targeting is definitely broken, it runs past mobs, and when it does decide to fight it runs circles around the mob without attacking.
In WoW Settings -> Interface -> Then find "Left Click to Interact!" and turn it off!

Another error. Dont know if this is HB or wow. Im trying to use my fishing bots, and after a couple minutes WoW just closes. 1st I used MrFishIt, I went to go smoke and came back and WoW was closed. Restarted it and got a drink, again it was closed when I came back. So I started AutoAngler2, turned off pool fishing, and took a shower. Same thing when I came back. There were no error messages stating WoW had crashed like HB normally does 15+ times a day. Because there was no error message and wow just closed, I was wondering if this could be WoW or Warden rather then HB? I'm gonna play it safe and not use the fishing bots for now.

[2:33:39 PM:384] Plugin Part Security: Been followed for 180.5714797 seconds by Lu******
[2:33:39 PM:385] Rarekiller Part Log Out: Followed for too long by player Lu******. Followed for 180.5714797 seconds! - Kill WoW Now, bb
[2:33:39 PM:493] Wow exited, Honorbuddy stopped!

That's from your AutoAngler2 Log. Someone was following you. If you don't want the problem, turn it off!! Btw it's in the RareKiller settings.
 
Last edited:
Another error. Dont know if this is HB or wow. Im trying to use my fishing bots, and after a couple minutes WoW just closes. 1st I used MrFishIt, I went to go smoke and came back and WoW was closed. Restarted it and got a drink, again it was closed when I came back. So I started AutoAngler2, turned off pool fishing, and took a shower. Same thing when I came back. There were no error messages stating WoW had crashed like HB normally does 15+ times a day. Because there was no error message and wow just closed, I was wondering if this could be WoW or Warden rather then HB? I'm gonna play it safe and not use the fishing bots for now.

#1 MrFishIt: View attachment 30123
#2 MrFishIt: View attachment 30124
#3 AutoAngler2: View attachment 30125

[2:12:50 PM:930] Rarekiller Part Log Out: Followed for too long by player Mhotep. Followed for 180.5539679 seconds! - Kill WoW Now, bb

Disable the Rarekiller plugin
 
I did notice that Singular might be having some problems pausing to wait for a Cooldown. I'll look into it.
For now head to the Honorbuddy -> Classes (sub)Forum and grab the Singular V2 from Strix's SVN. ( http://www.thebuddyforum.com/honorb...riven-all-one-cc-just-plain-works-pt-2-a.html )


First off, thank you for the quick and helpful responses. Unfortunately, my Death Knight is still randomly not using abilities on mobs. This most recent time, after updating to the most recent version of singular, my Boneshield was not on cooldown and it still just auto attacked the mob until it was dead. This happened at 5:10:38 in the log, casted Death Coil on a Dreadfang Lurker, then just auto attack until dead.
 

Attachments

First off, thank you for the quick and helpful responses. Unfortunately, my Death Knight is still randomly not using abilities on mobs. This most recent time, after updating to the most recent version of singular, my Boneshield was not on cooldown and it still just auto attacked the mob until it was dead. This happened at 5:10:38 in the log, casted Death Coil on a Dreadfang Lurker, then just auto attack until dead.
Very odd...
Maybe try a whole different CC: Death Knight
 
As for me it can only be noticed when you are running more than 10 bots... on previous releases (pre 4.2) i could run over 17 bots on my pc and continue to work or play on it, but now - when i start at least 13 of them my CPU is used for 95-100% all the time :(
what machine you got?
 
The bot fails to get on the elevator in Org (going up) at <Hotspot X="1749.36" Y="-4388.638" Z="42.50739" />

[12:32:38 AM:728] Unloading tiles!
[12:32:38 AM:733] Loading Kalimdor_40_28
[12:32:44 AM:319] Waiting for the elevator

and then it just sits there

i'm a tauren

i manually got on and it went about it's way

[12:36:00 AM:257] Waiting for elevator to reach end point
[12:36:15 AM:525] Moving out of elevator

I need this fixed asap please
 
BG bot not accepting BG

I've seen two different scenarios. One it won't accept invite at all. then the other it will accept it for several bg's then it quit's accepting all together. I've disable all the addon's and plugins within hb and i get the same results.
 

Attachments

I've seen two different scenarios. One it won't accept invite at all. then the other it will accept it for several bg's then it quit's accepting all together. I've disable all the addon's and plugins within hb and i get the same results.
I can already tell you what to do.
Que for Random BG, or just 1. Queing for 2 specific BGs occasionally causes HB to lockup. Just as a fix for now.
 
4.2 honorbuddy worked perfectly, didnt have to load anything exept pressing play, but in patch 4.3 whenever I join Random BG it just runs up to to horde, selects a target (not always, but sometimes), runs towards them and just stands still, thus giving them a free kill. Short explained a average BG situation: Mount up - run to horde - remain stationary untill death occurs.
 
4.2 honorbuddy worked perfectly, didnt have to load anything exept pressing play, but in patch 4.3 whenever I join Random BG it just runs up to to horde, selects a target (not always, but sometimes), runs towards them and just stands still, thus giving them a free kill. Short explained a average BG situation: Mount up - run to horde - remain stationary untill death occurs.

Try downloading and using a different Custom Class. Singular may not support you character's class/spec.

Link...
Classes
 
Status
Not open for further replies.
Back
Top