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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

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

Echo, thank you so much for your quick reply. You have been a huge help to me over the past few month sense I came back to HB. Everything is working great now. I was using HB in 2008 (way back in the day) It was a big deal when we figured out how to get the toon to go to the mail box. :) those were the days.

Second question, I would like to DE the greens and above, any way to make that happen. Even if I could mail the items, but I don't see an option for that. I could GB them, but I don't have a guild set up for that yet. Is there another option. IT would be great if my botting toon could just DE everything at the end of each instance. Then mail the mats. DE mats go for a fortune and it would be great to save them.

Maybe there is a plug in or I can insert some *.xml to make it happen? The toon that is running this is an enchanter.

Thanks again for your assistance.
 
Last edited:
Echo, thank you so much for your quick reply. You have been a huge help to me over the past few month sense I came back to HB. Everything is working great now. I was using HB in 2008 (way back in the day) It was a big deal when we figured out how to get the toon to go to the mail box. :) those were the days.

Second question, I would like to DE the greens and above, any way to make that happen. Even if I could mail the items, but I don't see an option for that. I could GB them, but I don't have a guild set up for that yet. Is there another option. IT would be great if my botting toon could just DE everything at the end of each instance. Then mail the mats. DE mats go for a fortune and it would be great to save them.

Thanks again for your assistance.
To have it disenchant the green items at the end of each instance, use this RunCode that I've wrote up:

PHP:
<CustomBehavior File="RunCode" Type="Definition" ><![CDATA[ 
	foreach (WoWItem disenchantMe in StyxWoW.Me.BagItems) 
	{ 
		if (disenchantMe.Quality == WoWItemQuality.Uncommon && disenchantMe.RequiredEnchantingLevelToDisenchant <= StyxWoW.Me.GetSkill(333).CurrentValue) 
		{ 
			await CommonCoroutines.StopMoving(); 
			SpellManager.Cast(13262); 
			Bots.Professionbuddy.PBLog.Log(System.Windows.Media.Colors.DeepSkyBlue, "[Azyul Disenchanter] ", System.Windows.Media.Colors.LightGreen, $"Disenchanting >  {disenchantMe.Name}"); 
			await Coroutine.Sleep(650); 
			disenchantMe.Use(); 
			await Coroutine.Wait(2000, () => LootFrame.Instance.IsVisible); 
			LootFrame.Instance.LootAll(); 
			await Coroutine.Wait(2000, () => !LootFrame.Instance.IsVisible); 
		} 
	} 
]]> 
</CustomBehavior>

If you do not know how to include this code into the profile - tell me which profile you're wanting it in, and I'll include it.
 
Last edited:
If you you could just put it in the HoL and get that to me, then I can look at the xml and modify the others. Makes it easier to see it.

:)
 
If you you could just put it in the HoL and get that to me, then I can look at the xml and modify the others. Makes it easier to see it.

:)
Sure, here's an edit:



If you'll note, the code blotch is directly after the line that says <!-- Run Dungeon -->
And its above the line that says <!-- Guild Bank Stuff -->

So with it in this location, the disenchant code will activate after the dungeon is ran, and before the guild bank code is read.
 
Last edited:
Error Forge of Souls

I was updating all of the *.xml files to allow DEing at the end of each and I ran each one to make sure it worked. At the end of Forge of Souls I got the following. (See Pic) If you need log please let me know.

Pic.webp
 
Last edited:
i was trying this on my hunter but it doesend kil instantly 1 mob it always puls alot it should kil mob afther mob and not pulling a bunch and then kil
 
Quick question about the raw gold farm profiles (HoL and what not), are people able to do those profiles at lvl 90? I think I have seen some of the bots doing them at lvl 90 coming in and out of HoL, but was curious if they were actually botting it and if they were tanks. Was hoping I could skip the leveling from 90-100 and just go straight to HoL and farm up the gold on some rogues.
 
Quick question about the raw gold farm profiles (HoL and what not), are people able to do those profiles at lvl 90? I think I have seen some of the bots doing them at lvl 90 coming in and out of HoL, but was curious if they were actually botting it and if they were tanks. Was hoping I could skip the leveling from 90-100 and just go straight to HoL and farm up the gold on some rogues.

Yes you can!
 
Hi Echo,

Would it be difficult to add an option to mail gold? Guild full bots seems super risky.

Or would it be easier to add a custom line for the profile on my side?

Searched around for a gold mailer plugin but they were all outdated.

Thanks
 
Hi Echo,

Would it be difficult to add an option to mail gold? Guild full bots seems super risky.

Or would it be easier to add a custom line for the profile on my side?

Searched around for a gold mailer plugin but they were all outdated.

Thanks
Yes, it would be possible to set it to mail the gold.

However, it would require a complete custom mailbox logic - which right now the Azyul profiles rely on the built-in Honorbuddy logic.
 
hi... im pretty much new to botting, and im clueless about doing my own profiles, said that,i really need the help of the community with something, im running the HoL suicide profile, it does GREAT! but i really want the bot sell everything faster (it does sell 1 item per 0.5sec maybe?). is there any way that i can put a macro to mass sell everything? l have these macros:

SELL EVERYTHING GREY:

/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("- Selling "..name); UseContainerItem(bag,slot) end; end;end

SELL EVERYTHING GREEN:

/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff1eff00") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end

SELL EVERYTHING BLUE
/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff0070dd") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end

SELL EVERYTHING PURPLE:
/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ffa335ee") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end

so... is there any way the bot press those macros for a fast sell? thx in advance. ahhh and sorry for my terrible english xD
 
hi... im pretty much new to botting, and im clueless about doing my own profiles, said that,i really need the help of the community with something, im running the HoL suicide profile, it does GREAT! but i really want the bot sell everything faster (it does sell 1 item per 0.5sec maybe?). is there any way that i can put a macro to mass sell everything? l have these macros:

--snipped out code to save space --

so... is there any way the bot press those macros for a fast sell? thx in advance. ahhh and sorry for my terrible english xD
No, this is not possible or else my profiles would already be doing it.

Ever since Warlords of Dreanor, Blizzard made the inventory system to where you cannot sell a lot of items at once.
So given this, there has to be .5sec of lag in between each sell.

If you try selling everything at once, some items will not be sold and it will cause issues.


If you want to try it yourself, a better code to sell everything would be:
PHP:
foreach (WoWItem i in Me.BagItems)
{
	if (i != null && i.Entry != 6948 && MerchantFrame.Instance.IsVisible)
		i.UseContainerItem();
}

 
Back
Top