• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • HB ARCHIVES: Honorbuddy Profile Pack--DO NOT DELETE!

    Discussion in 'Archives' started by chinajade, Sep 8, 2013.

    1. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      Profile: [H - Quest] 12-58 K-EK [Kick]
      Description: Increase the TargetingDistance for 3 Quest Objectives from 40 to 100, then return to 40.

      Replace:
      Code:
              <Objective QuestName="Securing the Supply Lines" QuestId="8280" Type="KillMob" MobId="11740" KillCount="15" />
              <Objective QuestName="Deadly Desert Venom" QuestId="8277" Type="CollectItem" ItemId="20373" CollectCount="8" />
              <Objective QuestName="Deadly Desert Venom" QuestId="8277" Type="CollectItem" ItemId="20376" CollectCount="8" />
      With:
      Code:
              <TargetingDistance Value="100" />
              <Objective QuestName="Securing the Supply Lines" QuestId="8280" Type="KillMob" MobId="11740" KillCount="15" />
              <Objective QuestName="Deadly Desert Venom" QuestId="8277" Type="CollectItem" ItemId="20373" CollectCount="8" />
              <Objective QuestName="Deadly Desert Venom" QuestId="8277" Type="CollectItem" ItemId="20376" CollectCount="8" />
              <TargetingDistance Value="40" />
       
    2. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      Profile: [H - Quest] 12-58 K-EK [Kick]
      Description: Increase the TargetingDistance this Quest Objective from 40 to 100, then return to 40.

      Replace:
      Code:
              <Objective QuestName="Stepping Up Security" QuestId="8281" Type="KillMob" MobId="11741" KillCount="20" />
      With:
      Code:
              <TargetingDistance Value="100" />
              <Objective QuestName="Stepping Up Security" QuestId="8281" Type="KillMob" MobId="11741" KillCount="20" />
              <TargetingDistance Value="40" />
       
    3. dutamulia

      dutamulia New Member

      Joined:
      Nov 7, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      Quest : Rocket Rescue
      Problem : after delivering package and bombing target the bot is not using the emergency rocket pack to return to Gadgetzan
       
    4. shatows

      shatows New Member

      Joined:
      Jan 12, 2014
      Messages:
      13
      Likes Received:
      0
      Trophy Points:
      0
      Sorry if this is a really nooby question but Is there a way to use the LK questing profile if I don't have enough money to buy LK flying? It keeps stopping with the message "Not enough money to fly"
       
    5. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      Yes i can Confirm this Problem.

      Rocket Rescue - Quest - World of Warcraft

      Why are these 2 Objectives in the Profile, when we have a SpecificQuest CustomBehavior for this Quest?
      Code:
              <CustomBehavior File="SpecificQuests\24910-Tanaris-RocketRescue" />
      
              <Objective QuestName="Rocket Rescue" QuestId="24910" Type="KillMob" MobId="38576" KillCount="5" />
              <Objective QuestName="Rocket Rescue" QuestId="24910" Type="KillMob" MobId="40583" KillCount="40" />
      I think we can remove this 2 Objectives.


      The Problem dutamulia descriped, is in the 24910-Tanaris-RocketRescue.cs Behavior, but i dont no what is wrong. Chinajade must take a look at this.


      //Edit: I attached now a Short Log, maybe it Helps Chinajade to find the Bug.
       

      Attached Files:

    6. dutamulia

      dutamulia New Member

      Joined:
      Nov 7, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      That is a very nooby question indeed :D . Now you've got HB money(golds) should not be a problem. Head to Horde Profiles Forum 70-80 and get any grind profile (I suggest this one) then let HB run it for few hours. AH the cloths and vendor trash everything else. Problem solved.


      edit :

      Quest title : Ancient Obstacles - Tanaris
      Desc : could use a much wider pull range, maybe twice the current.

      edit2 : but a after more consideration it might not make it faster since the bot will also pull irrelevant monsters (there are some beasts there), unless we set a temporal avoid mobs.
       
    7. daarno

      daarno New Member

      Joined:
      Nov 30, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      Bot stopping! Reason: Fatal error in quest behavior, or profile.
       

      Attached Files:

    8. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      Profile: [Fly][H - Quest] BC 58-70 [Kick]
      Quest: Shizz Work - Quest - World of Warcraft
      Description: Me.Minions.Count not work for this Quest. Replace it with ObjectManager.

      Replace:
      Code:
                      <!-- If we've lost ze poochie-poochie, go get a new one... -->
                      <If Condition="HasItem(30803) &amp;&amp; ( Me.Minions.Count &lt; 1 )">
                          <MoveTo DestName="Foreman Razelcraz" X="431.1503" Y="2889.698" Z="52.17432" />
                          <CustomBehavior File="Misc\RunLua" WaitTime="1000" NumOfTimes="1" Lua="UseItemByName(30803)" />
                      </If>
      With:
      Code:
                      <!-- If we've lost ze poochie-poochie, go get a new one... -->
                      <If Condition="HasItem(30803) &amp;&amp; !(ObjectManager.GetObjectsOfType&lt;WoWUnit&gt;().Any(u =&gt; u.Entry == 21847 &amp;&amp; u.FactionId == 6))">
                          <MoveTo DestName="Foreman Razelcraz" X="431.1503" Y="2889.698" Z="52.17432" />
                          <CustomBehavior File="Misc\RunLua" WaitTime="1000" NumOfTimes="1" Lua="UseItemByName(30803)" />
                      </If>
      Seems to be working with ObjectManager:
      Code:
      [13:22:07.589 D] Compiling expression 'HasItem(30803) && !(ObjectManager.GetObjectsOfType<WoWUnit>().Any(u => u.Entry == 21847 && u.FactionId == 6))' @ line 2568
      [13:22:07.890 D] [QDBG] Starting behavior Bots.Quest.QuestOrder.ForcedMoveTo.
      [13:22:07.891 D] Goal: Moving to Foreman Razelcraz
      [13:22:07.967 D] Activity: Loading Tiles
      [13:22:07.967 D] Loading Expansion01_26_31
      [13:22:08.159 D] Successfully generated path from {445.9225, 2885.042, 53.21073} to {431.1503, 2889.698, 52.17432} in 166 milliseconds
      [13:22:09.407 D] [QDBG] Done with forced behavior Bots.Quest.QuestOrder.ForcedMoveTo.
      [13:22:09.408 D] Goal: Nothing
      [13:22:09.408 D] [QDBG] Starting behavior Bots.Quest.QuestOrder.ForcedCodeBehavior.
      [13:22:09.409 D] Goal: RunLua-v1085: "In Progress (no associated quest)"
      
      
      [Ref: "[Fly][H - Quest] BC 58-70 [Kick]($Rev: 3061 $)" @line 2570]
      [13:22:09.409 D] Activity: RunLua: UseItemByName(30803) 1 number of times while waiting 1000 inbetween
      [13:22:10.495 D] [QDBG] Done with forced behavior Bots.Quest.QuestOrder.ForcedCodeBehavior.
      [13:22:10.496 D] StyxWoW.AreaManager.CurrentGrindArea is null
      [13:22:10.585 D] [QDBG] Done with forced behavior Bots.Quest.QuestOrder.ForcedIf.
       
    9. derdennis

      derdennis New Member

      Joined:
      Dec 25, 2013
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      hi all,
      got a little problem. my character moves to quest npc, stops 1meter right to npc, turns instant his back to the npc and cant get or give up the quest anymore.
      i have to manually face the npc and then it works.
      this problem comes up from time to time and is random, no specific npc with this problem.
      in 10 lvls i face this problem two or three times.
      sry for bad english, not my favorite language :eek:
       
    10. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      Profile: [H - Quest] 12-58 K-EK [Kick]
      Quest: Seaside Salvage - Quest - World of Warcraft
      Description: More Hotspots for bigger Area

      Replace:
      Code:
          <Quest Name="Seaside Salvage" Id="24906">
              <Objective Type="CollectItem" ItemId="50829" Name="Steamwheedle Supplies" CollectCount="7">
                  <CollectFrom>
                      <GameObject Name="Steamwheedle Crate" Id="202198" />
                  </CollectFrom>
                  <Hotspots>
                      <Hotspot X="-7411.797" Y="-3927.519" Z="0.8123438" />
                      <Hotspot X="-7535.719" Y="-3944.561" Z="-1.717323" />
                      <Hotspot X="-7546.633" Y="-3979.093" Z="-1.717323" />
                      <Hotspot X="-7540.078" Y="-4091.43" Z="0.2526106" />
                      <Hotspot X="-7723.938" Y="-3971.649" Z="0.3138381" />
                      <Hotspot X="-7732.156" Y="-3965.017" Z="1.032588" />
                  </Hotspots>
              </Objective>
          </Quest>
      With:
      Code:
          <Quest Name="Seaside Salvage" Id="24906">
              <Objective Type="CollectItem" ItemId="50829" Name="Steamwheedle Supplies" CollectCount="7">
                  <CollectFrom>
                      <GameObject Name="Steamwheedle Crate" Id="202198" />
                  </CollectFrom>
                  <Hotspots>
                      <Hotspot X="-7411.797" Y="-3927.519" Z="0.8123438" />
                      <Hotspot X="-7535.719" Y="-3944.561" Z="-1.717323" />
                      <Hotspot X="-7546.633" Y="-3979.093" Z="-1.717323" />
                      <Hotspot X="-7540.078" Y="-4091.43" Z="0.2526106" />
                      <Hotspot X="-7723.938" Y="-3971.649" Z="0.3138381" />
                      <Hotspot X="-7732.156" Y="-3965.017" Z="1.032588" />
                      <Hotspot X="-7773.143" Y="-3977.371" Z="-1.456392" />
                      <Hotspot X="-7724.133" Y="-4055.484" Z="-1.716271" />
                      <Hotspot X="-7753.903" Y="-4112.364" Z="-1.717169" />
                      <Hotspot X="-7841.945" Y="-4019.244" Z="-1.686405" />
                      <Hotspot X="-7875.847" Y="-4069.918" Z="-1.693053" />
                      <Hotspot X="-7831.688" Y="-4123.332" Z="-1.717145" />
                      <Hotspot X="-7907.05" Y="-4110.19" Z="-1.641792" />
                      <Hotspot X="-7830.556" Y="-4210.754" Z="-1.717691" />
                      <Hotspot X="-7881.584" Y="-4254.544" Z="-2.645685" />
                  </Hotspots>
              </Objective>
          </Quest>
       
    11. Oppenheimer

      Oppenheimer New Member

      Joined:
      Dec 7, 2013
      Messages:
      66
      Likes Received:
      0
      Trophy Points:
      0
      I found ONE BIG ISSUE with this profile, and that's the mailing.
      Is there a way to stop the toon to go out of his way to send a stupid mail whenever my bags are full....I want it to sell everything and not mail anything !
       
    12. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      This is not Profile issue.
      Remove the Mail Recipient and everything works fine ;-)
       
    13. Risien

      Risien Member

      Joined:
      Dec 6, 2011
      Messages:
      144
      Likes Received:
      1
      Trophy Points:
      18
      I see one problem with this profile. When questing with full BoA's it runs the whole profile for that zone instead of after the mobs go green or grey out (Quest too) to leave the zone and go to the next area.There for your not lvling as fast but i guess there really isn't away to have it change zones once a certian lvl has been reached.
       
    14. ia2115

      ia2115 Member

      Joined:
      Sep 11, 2010
      Messages:
      31
      Likes Received:
      0
      Trophy Points:
      6
      Hey is it possible to split the BC profile into smaller lvl files, that would make it a lot easyer to force the profile to run specific areas, instead of whole bc in one, same goes for 1-58 but havent got that many problems there with the leveling, as i seems to have in 58-70.
      im sorry i dont send logs, or specific problem but the big bc in all file is the "issue" for me. thanks for your great work, i really love your work and i use it a lot. Keep it up thanks for helping out the community.
       
    15. daarno

      daarno New Member

      Joined:
      Nov 30, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      not really. There is something wrong with the mail function. I just had a toon running to chillwind camp from western plaguelands to send a few items, and I still had 54 empty spots in my bags!
       
    16. dutamulia

      dutamulia New Member

      Joined:
      Nov 7, 2013
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      0
      Quest : Secret Communacation - Silithus
      Problem : Bot gets swarmed and keep dying
      edit : I am playing a MM hunter - troll, Plates wearer maybe will encounter less problem here.
       
    17. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Hi again, Blackout44, and thanks for the log.

      The problem is not profile-related. Your Honorbuddy is having some serious issues, here:
      [08:55:20.197 D] (Singular) EnsureMovementStopped: stopping because target @ 15.9 yds, stop range: 36.0
      [08:55:20.197 D] (Singular) StopMoving: Now, unit == null, method:
      [08:55:20.277 D] (Singular) EnsureMovementStopped: stopping because target @ 16.0 yds, stop range: 36.0
      [08:55:20.277 D] (Singular) StopMoving: Now, unit == null, method:
      ...
      [09:00:31.433 D] (Singular) EnsureMovementStopped: stopping because target @ 20.9 yds, stop range: 36.0
      [09:00:31.433 D] (Singular) StopMoving: Now, unit == null, method:
      [09:00:31.521 D] (Singular) EnsureMovementStopped: stopping because target @ 20.7 yds, stop range: 36.0
      [09:00:31.521 D] (Singular) StopMoving: Now, unit == null, method:

      and here...
      [09:08:09.518 N] [Singular] Switching to BotPoi: Glassweb Spider.58E3!
      [09:08:09.896 D] (Singular) MoveToUnit[PathGenerated]: moving within 40.0 yds of Glassweb Spider.58E3 @ 49.2 yds
      [09:08:09.897 D] (Singular) MoveToUnit[Moved]: moving within 38.0 yds of Glassweb Spider.58E3 @ 49.2 yds
      [09:08:09.975 D] (Singular) MoveToUnit[Moved]: moving within 40.0 yds of Glassweb Spider.58E3 @ 48.6 yds
      [09:08:09.976 D] (Singular) MoveToUnit[Moved]: moving within 38.0 yds of Glassweb Spider.58E3 @ 48.6 yds
      ...
      [09:08:19.728 D] (Singular) MoveToUnit[PathGenerated]: moving within 40.0 yds of Glassweb Spider.58E3 @ 49.4 yds
      [09:08:19.732 D] (Singular) MoveToUnit[Moved]: moving within 38.0 yds of Glassweb Spider.58E3 @ 49.4 yds
      [09:08:19.801 D] (Singular) MoveToUnit[Moved]: moving within 40.0 yds of Glassweb Spider.58E3 @ 49.6 yds
      [09:08:19.803 D] (Singular) MoveToUnit[Moved]: moving within 38.0 yds of Glassweb Spider.58E3 @ 49.6 yds

      And this one looks like it might be a lava death. If not, its very peculiar:
      [09:37:42.733 N] Eating Conjured Mana Brownie
      [09:37:43.013 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:43.013 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:43.330 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:43.330 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:44.197 N] [Singular] Still moving... waiting until Bot stops
      [09:37:45.503 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:45.503 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:45.855 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:45.855 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:46.453 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:46.453 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:47.079 D] (Singular) EnsureMovementStopped: stopping! to eat
      [09:37:47.079 D] (Singular) StopMoving: Now, unit == null, method:
      [09:37:47.667 D] We died, Clearing current POI

      The best we could recommend is to try a 'clean install'. Instructions here:

      You will probably also want to delete the 'mesh directory' completely. Its in C:/Users/******/AppData/Local/HonorbuddyMeshes.

      If you still have problems after this, please open a new thread in the Support forum with a fresh log.

      The problem is not profile-related, and there is nothing we can do to help you in this thread.

      cheers,
      chinajade


      [size=-2]Ref: Initial response to Blackout44[/size]
      [size=-2]Ref: Blackout44's log[/size]
       
    18. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Hi, Dutmulia,

      We greatly appreciate your desire to help. However, we cannot act on problem reports without logs. Without the log, we've no way to see if you've an interfering plugin or WoWclient addon, you were "in competition" with other players for the quest objective, you were suffering navigational issues, your WoWclient glitched (happens more frequently than one would think), your bot was mis-configured, etc.

      With nothing to analyze, we've simply no way to make corrections from this informaiton.

      If you wish to submit problem reports, we need you to follow the process outlined in Reporting Problems or Seeking Assistance. This includes attaching the full log that captured the issue.

      But, thank you again for the attempts.

      cheers,
      chinajade
       
    19. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Hi, Kumoon,

      There is no way to assist you with problems like this, unless you attach the full log that captures the issue. Please see the guide for Reporting Problems or Seeking Assistance.

      cheers,
      chinajade
       
    20. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Hi, Slite62, and many thanks for the log.

      MaxMuster is spot on with his analysis:

      // Apply costume...
      [09:23:31.538 D] Goal: RunMacro-v1085: ""Seeds of Discord" (http://wowhead.com/quest=25308)"
      Running macro 1 times

      [Ref: "[Fly][N - Quest] Hyjal 80-82 [Kick]($Rev: 2166 $)" @line 2728]
      [09:23:31.539 D] Activity: RunMacro 1/1 Times
      ...
      // Singular shifts to cat form, breaking the Costume buff
      [09:23:36.174 N] [Singular] Casting Cat Form on Me @ 100.0%
      ...
      // Profile asks Honorbuddy to kill mob...
      [09:23:56.759 D] Goal: Kill High Cultist Azennios x 1
      // Druid is unable to complete this task since it no longer has Orc disguise buff...

      In v3090, we've attempted to work around the Druid shapeshift problem. However, a profile has no control over the abilities selected for use by the Combat Routine. So, our work-around is hacky at best, and may not work.

      For the "happens on non-Druids, too" issue, we'll have to see the logs for that problem. Our guess is a plugin is interfering with the completion of this quest. Please show us a log, the next time this happens to you on a non-Druid.

      cheers,
      chinajade


      [size=-2]Ref: Slite62's problem report w/log[/size]
      [size=-2]Ref: MaxMuster's follow-on analysis of the problem[/size]
       

    Share This Page