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

[Azyul Project] Dungeon Farming, Gold Farming, Mount Farming, Transmog Farming, and more!

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?
 
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?
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.
 
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.

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:
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:
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 for my 85 bots - ofcourse I could add more kill spots but don't think it would do all that great gold wise.
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.
 
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.
 
The logic is the exact logic used in the vendoring routine.
It's just that the behavior doesn't always operate properly.
Which I'm trying to find a reliable solution for all the profiles.

Most of the profiles are coded to mail when the player goes out to vendor, however not every 'town hub' has a mailbox in it.
So, sometimes it will only mail if the player has 10 bagslots after vendoring.
That way it won't waste time running to the mailbox every time it vendors.

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
 
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.
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 />



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
Yea, I've seen it do that a few times during testing.
 
Last edited:
Interesting - ty
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:
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
hah - indeed, never noticed that
 
btw - do you use any combat routine for your test bots or just singular ?
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:
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.
yea - i'm trying to move away from them and as many unneeded plugins as possible.
 
yea - i'm trying to move away from them and as many unneeded plugins as possible.
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.
 
vqtxxy.png


why does it say negative minutes ? :p
 
vqtxxy.png


why does it say negative minutes ? :p
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
 
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 ._.
 
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 ._.
(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.
 
thanks for quick reply and eep sorry! I should have read all the pages of this thread. Will venture into the files now!
 
Back
Top