• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [Azyul Project] Dungeon Farming, Gold Farming, Mount Farming, Transmog Farming, and more!

    Discussion in 'Farming' started by EchoTiger, Feb 26, 2013.

    1. crehzy

      crehzy New Member

      Joined:
      Jan 20, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      When trying to farm the black morass, I'm getting something that says ---- XML Error: Unknown tag "CustomBehavior" (Input: "<CustomBehavior File="UserSettings" FindVendorsAutomatically="False" LootMobs="True" PullDistance="50" KillBetweenHotspots="True" LogoutForInactivity="False" />") in "HBProfile"! - On line 69 ----- am i doing something wrong?
       
    2. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      We had to use a custom behavior to code this profile due to the "Seek and destroy" fight with Medivh.
      Unfortunately, the behavior is dated and may not work.
      However, you can try it if you wish.
      Just put that file into your "Quest Behavior" folder, restart Honorbuddy and then try loading the profile.
       
    3. crehzy

      crehzy New Member

      Joined:
      Jan 20, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      It's atleast moving now but it's just going back and forth in a circle. Thanks for trying anyway!

      Edit: Do you know if this will ever be fixed or can be fixed?
       
      Last edited: May 24, 2014
    4. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      couldn't we get him starting mounted at beginning of pit of saron when it's pulling ? I'd add it myself if I knew how :D
      so far it's losing alot of time with the non-clumping up though... stupid casters


      overall I find it a little too dangerous and not efficient for my 85 bots - ofcourse I could add more kill spots but don't think it would do all that great gold wise.
       
      Last edited: May 24, 2014
    5. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      I thought about doing that, may send out an update today that'll add it. :3

      When I'm setting up a pull that I know there will be casters in, I usually try to make the bot walk behind a wall to LoS the casters.
      But since Pit of Saron is so.. 'open', there's not really many places to do it. :c

      One thing to also note about Pit of Saron is the Vyrkul riding the proto drakes.
      They can hit you with Glacial Strike, and if you can't heal yourself to full it will kill you.
      I'm also planning on making an 'alternative route' profile that goes left instead of right to avoid them.
       
    6. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Nice :) question - can I add a line to the sell stuff in the profile so bot will vendor cloth ? my plugin of selling items is acting up and i'm tired of it.
       
    7. ectocooler

      ectocooler Member

      Joined:
      Jan 13, 2014
      Messages:
      137
      Likes Received:
      2
      Trophy Points:
      18
      I only brought it up because it is doing this when it is at a location with a mailbox (Argent Stand). it finishes the vendoring and repairing, then runs to the mailbox, looks at it, decides that the flag on it is ugly, then runs off to fly back to Drak'Tharon Keep
       
    8. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      Hmm, there's no way using profile code to do this unless a Behavior is created to do so, however using WoW LUA code, it's possible.

      The following LUA will sell all Frostweave in your bags, just code can be Macro'd and used by adding "/run" at the beginning of it:
      Code:
      for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); 
      if name and string.find(name,"33470") then DEFAULT_CHAT_FRAME:AddMessage("- Selling "..name); UseContainerItem(bag,slot) 
      end; 
      end;
      end

      To implement it into a profile, you'd need to place it after (or before) the bot messes with the vendors.

      Ex:
      Code:
      <!-- Open vendor menu -->
      <CustomBehavior File="InteractWith" MobId="28855" ObjectType="Npc" Range="1" X="5769.661" Y="-3572.947" Z="387.2385" />  
      
      
      <!-- Vendor all frostweave -->
      <CustomBehavior File="Misc\RunLUA" Lua="
      	for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); 
      	if name and string.find(name,"33470") then DEFAULT_CHAT_FRAME:AddMessage(&quot;- Selling &quot;..name); UseContainerItem(bag,slot)
      	end; 
      	end;
      	end "   />  
      
      
      <!-- The code below is the default "sell" code all profiles use -->
      <SetVendor>
      	<Vendors>
      		<Vendor Name="Ba'kari" Entry="28855" Type="Repair" X="5769.661" Y="-3572.947" Z="387.2385" />
      	</Vendors>
      </SetVendor>
      <CustomBehavior File="ForceSetVendor" DoMail="False" DoSell="True" DoRepair="True" DoTrain="False" />
      <CustomBehavior File="WaitTimer" WaitTime="1000" />
      <ClearVendor />


      [HR][/HR]

      Yea, I've seen it do that a few times during testing.
       
      Last edited: May 24, 2014
    9. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      Interesting - ty
       
    10. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      On a side note!
      There's a XML document inside of your Honorbuddy folder named "Protected Items"

      Inside of it is a list of every item that Honorbuddy will not sell.
      If you remove any of the entries from the list, Honorbuddy will then no longer 'protect' the removed item - meaning it will be sold.
      The entry for Frostweave is on line 394
      Code:
          <Item Name="Frostweave Cloth" Id="33470" />
      Just delete that.

      This may be the more simple solution you're looking for. :3
       
      Last edited: May 24, 2014
    11. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      hah - indeed, never noticed that
       
    12. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      btw - do you use any combat routine for your test bots or just singular ?
       
    13. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      Only Singular.
      Other combat routines are known to have issues while being inside of a dungeon while DungeonBuddy is not running.
      Mostly mob targetting issues.
       
      Last edited: May 24, 2014
    14. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      yea - i'm trying to move away from them and as many unneeded plugins as possible.
       
    15. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      That's what I prefer. :3
      If my profiles can't be used with a freshly downloaded Honorbuddy, then I won't submit them until they can.
       
    16. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      [​IMG]

      why does it say negative minutes ? :p
       
    17. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      The calculation is based off of the realm time.
      I noticed sometimes when you "cross into another realm" the time realm time will change causing the calculations to mess up.

      I'm working on it to were it'll go off of your 'local' time instead, which should fix that. xD
       
    18. eepohno

      eepohno Member

      Joined:
      Jan 26, 2014
      Messages:
      124
      Likes Received:
      1
      Trophy Points:
      18
      yay oh my gosh! so I leveled my monk to 90 (thx HonorBuddy<3) and have been trying this profile! OoO do I love it~ my only question is o.o is there any way to make her sell the food and potions also? since it is mostly dungeon farming I would like to leave it going while I sleep. Just fear if i do she will load up on food and potions from there ._.
       
    19. EchoTiger

      EchoTiger Official Profile and Singular Developer Staff Member Moderator

      Joined:
      Nov 28, 2012
      Messages:
      6,810
      Likes Received:
      631
      Trophy Points:
      113
      (see conversation above)
      If you remove the 'problem items' from the Protected Items file, it should sell them.
      There's also some plugins that will do it.
      Sorry for not detailing this, I'm on mobile right now.
       
    20. eepohno

      eepohno Member

      Joined:
      Jan 26, 2014
      Messages:
      124
      Likes Received:
      1
      Trophy Points:
      18
      thanks for quick reply and eep sorry! I should have read all the pages of this thread. Will venture into the files now!
       

    Share This Page