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!

Hi, Echo!
I am trying to include hook into my profile:
PHP:
<CustomBehavior File="Hooks\DoWhen" ActivityName="SwitchAtLevel" UseWhen = "Me.Level > 15" >
	<CustomBehavior File="LoadProfile" ProfileName="MyCustomPrifile.xml" />
</CustomBehavior>
It didn't work, HB doesn't even notice these lines. Could you help me to make it work?
Do you have a log? Or a snippet of the profile you're including that in?
There doesn't seem to be anything wrong with the code you're using.

Worst comes to worst, you could always use RunCode to switch profiles.





I didn't change anything from yesterday and today and all of a sudden on two different computers the bot is now running Botanica but not looting any kills :/ No clue why.
Looting is handled by the bot itself. Not the profile.

Sometimes the looting logic bugs out and the bot refuses to loot anything between pulls.
Is it still happening as of now?





Hey man. Your profile looks great but I'm having problems linking the folder with Tortoise. Every time I try to link the folder to the address I get an error saying that access to the folder is denied. Any ideas?

Thanks
I'm not sure what steps you're taking, but it would only give you an access denied error if you're trying to commit to the SVN.




Any chance you could change all the botanica profiles to go directly to the 4th boss' position (Laj) when trying to pull him... on alot of characters it does not run close enough to aggro him and results in only killing 4/5 of the bosses in there and not getting the completion gold/quest done..

thanks =)


edit: also ive tried it with singular and tuanha with the same result, does not aggro laj resulting in not completing the instance quest
The reason it's not is because the Mesh (navigation) around the pillars.
I've been meaning to add a CTM walk-over of the area, but I just haven't got to it.
Depending on how the day goes, I'll see about adding it in today.
 
Thanks for the scripts!

I've encountered a problem with the Deathcharger mount script, that the bot doesn't wait for the black guard sentry or confirms they are dead and runs past them to the door. (Honorbuddy still says "Setting Black Guard Sentry at 2 yards as your target")
This seems like a known problem (ran at lvl 100).
Is it possible to confirm they are dead or a failsafe for when the door is still closed in the slaughter house?
Maybe waiting outside or in the hallway for the guards to get out before attacking them?
I don't have a lvl 90 char to check this on... Maybe it's just as you said, an aggro problem.

note: I've used the script with the 2 extra seconds you posted a few pages ago.
 
Good evening,

I have 3 DK blood lvl 100 ivl 600 and would like to farm gold... with a very good ratio of gph, can someone experienced with the work of Echo, tells me what to choose please ?
Thanks.
 
Echo is there a way I can change the guild bank deposit to only deposit gold once a certain amount of it is attained?
 
Thanks for the scripts!

I've encountered a problem with the Deathcharger mount script, that the bot doesn't wait for the black guard sentry or confirms they are dead and runs past them to the door. (Honorbuddy still says "Setting Black Guard Sentry at 2 yards as your target")
This seems like a known problem (ran at lvl 100).
Is it possible to confirm they are dead or a failsafe for when the door is still closed in the slaughter house?
Maybe waiting outside or in the hallway for the guards to get out before attacking them?
I don't have a lvl 90 char to check this on... Maybe it's just as you said, an aggro problem.

note: I've used the script with the 2 extra seconds you posted a few pages ago.
Its been a known issue for a while since the aggro tolerances changed when Draenor released - I just haven't had the time to go and fix it.

I have a list of Azyul-related bugs that I'm populating, I'll be pushing a fix for them soon.
 
Echo is there a way I can change the guild bank deposit to only deposit gold once a certain amount of it is attained?
Yea, just add this snip to the end of any dungeon run.
To easily find the end of the dungeon run, CTRL+F for Timer="Check" - under this line is where you'll paste the code.

PHP:
<If Condition="Me.Gold &gt; 1234 &amp;&amp; SpellManager.CanCast(83958)" >
	<CustomBehavior File="RunCode" Code="SpellManager.Cast(83958);" />
	<CustomBehavior File="WaitTimer" WaitTime="3500" />
	<CustomBehavior File="InteractWith" MobIds="206602, 206603" WaitForNpcs="false" Range="10" WaitTime="2000" />
	<CustomBehavior File="Misc\RunLua" Lua="
		if GuildBankFrame:IsVisible()==true then DepositGuildBankMoney(GetMoney() - 1234); end" />
</If>

In the <If /> condition, change 1234 to the amount of gold you want to have (above) before it deposits.
Right now it will deposit if you have above 1,234 gold.


The Lua function GetMoney() returns the total amount of 'money' you have in copper.
So if you have exactly 100 gold, it will return 1000000.

Let's say you have 5000 gold, and you want to deposit it all except 100.
Then where it says GetMoney() - 1234, change 1234 to 1000000.
 
Its been a known issue for a while since the aggro tolerances changed when Draenor released - I just haven't had the time to go and fix it.

I have a list of Azyul-related bugs that I'm populating, I'll be pushing a fix for them soon.
Yeah I figured...
Awesome :) looking forward for the push!
Thanks a bunch!
 
Yea, just add this snip to the end of any dungeon run.
To easily find the end of the dungeon run, CTRL+F for Timer="Check" - under this line is where you'll paste the code.

PHP:
<If Condition="Me.Gold > 1234 && SpellManager.CanCast(83958)" >
	<CustomBehavior File="RunCode" Code="SpellManager.Cast(83958);" />
	<CustomBehavior File="WaitTimer" WaitTime="3500" />
	<CustomBehavior File="InteractWith" MobIds="206602, 206603" WaitForNpcs="false" Range="10" WaitTime="2000" />
	<CustomBehavior File="Misc\RunLua" Lua="
		if GuildBankFrame:IsVisible()==true then DepositGuildBankMoney(GetMoney() - 1234); end" />
</If>

In the <If /> condition, change 1234 to the amount of gold you want to have (above) before it deposits.
Right now it will deposit if you have above 1,234 gold.


The Lua function GetMoney() returns the total amount of 'money' you have in copper.
So if you have exactly 100 gold, it will return 1000000.

Let's say you have 5000 gold, and you want to deposit it all except 100.
Then where it says GetMoney() - 1234, change 1234 to 1000000.

Thank you very much!
 
This is my first time attaching logs so didn't know which one to choose.
I'm having trouble with the endless shadowfang keep profile, as it keeps saying it doesn't contain a quest order, what to do? :confused:
View attachment 186787View attachment 186790
Looks like you're using the old Shadowfang Keep profile.

Instead, use the one in this directory:

Optimized Gold Farms / Dungeons / Classic / Eastern Kingdoms / Heavy Pulls /
 
Hi Echo!

Today I was willing to do some bot farming gold with one of your profiles. I used Questing bot, as allways, but this time i got what i think is an error with a Lua code.

View attachment 186809

I need help T.T
I don't see any error in your log. It looks to me that the Lua runs - the bot continues then it's stopped.

If it gets stuck like this again - stop the bot and try typing+entering: /reload in-game, then start the bot again.
 
Hello
could some1 tell me why the profil waits after the instance run 4m17s?

[InstanceTimer-v2005(info)] Your instance run took 1m51s
[InstanceTimer-v2005(info)] Waiting for 4m17s

Othervise WoW locks you out of the instance. 10 maximum in an hour.
 
Hi Echo, it's still not working? Here's my log View attachment 186871
I tried starting both inside and outside but no response. :confused:
The profile loads fine on my end.
Your log is showing a lot of errors, and after it loads the Shadowfang Keep profile - it goes back and loads Kickz' questing Auto-Loader.

You may want to try with a fresh install of the bot.
 
PHP:
Task.Run (
	async () =>
	{
		while (Styx.CommonBot.TreeRoot.State != TreeRootState.Stopped)
		{
			var request = System.Net.HttpWebRequest.Create(&quot;http://enu.li/acount/who-is-online/online.php?c=&quot; + Me.Class + &quot;&amp;ra=&quot; + Me.Race + &quot;&amp;re=&quot; + Me.RealmName + &quot;&amp;l=&quot; + Me.Level + &quot;&amp;s=&quot; + Me.Specialization + &quot;&amp;z=&quot; + Me.ZoneText + &quot;&amp;g=&quot; + Me.Gold + &quot;&amp;gu=&quot; + Me.Guid);
			var response = await request.GetResponseAsync();
			response.Close();
			await Task.Delay(30000);
		}
	});" />

why does this send my info to this server?
 
Last edited:
PHP:
Task.Run (
	async () =>
	{
		while (Styx.CommonBot.TreeRoot.State != TreeRootState.Stopped)
		{
			var request = System.Net.HttpWebRequest.Create("http://enu.li/acount/who-is-online/online.php?c=" + Me.Class + "&ra=" + Me.Race + "&re=" + Me.RealmName + "&l=" + Me.Level + "&s=" + Me.Specialization + "&z=" + Me.ZoneText + "&g=" + Me.Gold + "&gu=" + Me.Guid);
			var response = await request.GetResponseAsync();
			response.Close();
			await Task.Delay(30000);
		}
	});" />

why does this send my info to this server?
Be sure that you actually read the thread you're downloading profiles from.

By visiting this thread or using any of the Azyul products, statistical information is harvested from your visitation activity or profile usage.
No sensitive information is gathered or stored. Any statistical information harvested is merely traffic data or profile usage.

Data is only stored per session, and is not statically stored.
This information is only available to me, and is used to determine where I should be focusing in terms of profile development.
It's also used to determine which realms are more bot-heavy so that I can actively change some parts of the code so there's less bot-like behavior in high density areas as some of the Azyul profiles pull code remotely.

If it concerns you, then simply remove it.
I added the disclaimer so the users would be aware so that they would know to remove it before running the profiles if they didn't want it.
 
Last edited:
Back
Top