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!

The selling script can exclude the leather. Or if there's a AM version of that profile, you can specify exactly what you need.

Which profile are you using?


Gundrak - Guild Bank Money+Frostweave

i also use your Grim Batol Version of this profile but it keeps my savage leather and ive also personally edited that one to keep my greens on that profile
but this Gundrak version runs to the vendor and sells absolutly everything except epics and frostweave i tried to test it to kepp the greens as well and even when i change the settings it still sells them so i can only think you got your selling script it and when im looking at it with another one of my friends we cant work out which bit is the selling script so that we can manually remove it

Thanks again Mike
 
Gundrak - Guild Bank Money+Frostweave

i also use your Grim Batol Version of this profile but it keeps my savage leather and ive also personally edited that one to keep my greens on that profile
but this Gundrak version runs to the vendor and sells absolutly everything except epics and frostweave i tried to test it to kepp the greens as well and even when i change the settings it still sells them so i can only think you got your selling script it and when im looking at it with another one of my friends we cant work out which bit is the selling script so that we can manually remove it

Thanks again Mike
The [AM - Alpha] Gundrak profile can be set to what you need.
Just disable "Sell All" and check "Deposit Frostweave" or "Deposit Cloth" using the menu.


Or alternatively, here's an edited version that won't sell your Savage Leather:


This version will keep and deposit the Savage Leather into the guild bank:
 
Last edited:
sorry i may have confused you when i started talking about grim batol but i need it to keep borean leather not savage leather but that profile would be absolutly amazing if you could just change it to borean from savage thank you very much
 
sorry i may have confused you when i started talking about grim batol but i need it to keep borean leather not savage leather but that profile would be absolutly amazing if you could just change it to borean from savage thank you very much
Won't sell Borean Leather:


Keep and deposit the Borean Leather into the guild bank:
 
[AM - Alpha] The Botanica -- can some1 check if I replace code1 with code2 mailing gold will work? I am so curious but can't test it atm.

Also u need to change value of "RangeFrameRadarPoint" to amount that u want your bot to leave instance farming mode and go for mail/vendor.
PHP:
			<If Condition="(Me.FreeBagSlots &lt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
				<CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
				<SetMailbox>
					<Mailboxes>
							<Mailbox Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
						</Mailboxes>
				</SetMailbox>
				<CustomBehavior File="ForceSetVendor" DoSell="False" DoRepair="False" DoMail="True" />
				<MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
				<ClearMailbox />
			</If>
with
PHP:
			<If Condition="(Me.Gold &gt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
				<CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
				<SetMailbox>
					<Mailboxes>
							<Mailbox Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
						</Mailboxes>
				</SetMailbox>
				<CustomBehavior File="RunMacro" Macro="/run local amount=GetMoney() SetSendMailMoney(amount-100030) SendMail("NAMEEEEE", amount/10000 .. " gold attached", "")" />  
				<CustomBehavior File="ForceSetVendor" DoSell="False" DoRepair="False" DoMail="True" />
				<MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
				<ClearMailbox />
			</If>
 
[AM - Alpha] The Botanica -- can some1 check if I replace code1 with code2 mailing gold will work? I am so curious but can't test it atm.
<SetMailbox> is for telling Honorbuddy which mailbox to use.
But since we're using custom codes, you won't need that.

Instead, you'd need an InteractWith code to open the mailbox, and you would also then a code to click the 'Send Mail' page since the mailbox doesn't automatically open to it.
Ex:
PHP:
<CustomBehavior File="InteractWith" MobId="Mailbox ID" WaitTime="1000" />
<CustomBehavior File="Misc\RunLua" Lua="
	MailFrameTab2:Click()
	local Amount=GetMoney()
	SetSendMailMoney(Amount)
	SendMail(&quot;Name&quot;, &quot;Here's your gold!&quot;, &quot;This is the text that goes into the body of the letter.&quot;)
" />
With the above code, all of the player's gold will be mailed.



The return value of the GetMoney(); function is in copper.
So with a little math we can deposit all of the player's gold minus X amount.
Ex:
PHP:
Keep=100*10000;
Amount=(GetMoney()-Keep);
This will alter the Amount variable so that all but 100 gold is mailed.
 
Last edited:
So this should work?
PHP:
		<!-- Generic Mail Routine -->
			<If Condition="(Me.Gold &gt;= (Lua.GetReturnVal&lt;uint&gt;(&quot;return RangeFrameRadarPoint&quot;, 0)))" >
				<CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
				<MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
				<CustomBehavior File="InteractWith" MobId="Mailbox ID" WaitTime="1000" /> 
				<CustomBehavior File="Misc\RunLua" Lua=" 
    				MailFrameTab2:Click() 
    				local amount=GetMoney() 
    				SetSendMailMoney(amount-1000030) SendMail(&quot;Name&quot;, &quot;Mail&quot;, &quot;gold&quot;) 
				" /> 
			</If>
		<!-- END Generic Mail Routine -->
 
So this should work?
PHP:
		<!-- Generic Mail Routine -->
			<If Condition="(Me.Gold >= (Lua.GetReturnVal<uint>("return RangeFrameRadarPoint", 0)))" >
				<CustomBehavior File="Message" Text="Moving to Mail" LogColor="Lime" />
				<MoveTo Nav="Fly" X="3056.502" Y="3687.034" Z="142.7493" />
				<CustomBehavior File="InteractWith" MobId="Mailbox ID" WaitTime="1000" /> 
				<CustomBehavior File="Misc\RunLua" Lua=" 
    				MailFrameTab2:Click() 
    				local amount=GetMoney() 
    				SetSendMailMoney(amount-1000030) SendMail("Name", "Mail", "gold") 
				" /> 
			</If>
		<!-- END Generic Mail Routine -->
Your conditioning codes aren't correct.
The RangeFrameRadarPoint is a variable that's populated by "Mailing Min" on the AMS.
Which this code looks for the player's minimum bagslots. If the player's baglsots are under the amount - it will go to mail.
It doesn't have anything to do with the player's gold -- unless you're modifying it yourself to do that.

Also since the profile is designed in XML, you need to escape your quotes.

And you'll need to put the correct mailbox ID into the InteractWith MobId tunable.

Aside from that, yes. :3
 
Last edited:
i think the wait timer for the guild bank deposit of items on the Grim batol Gbank Embersilk could do with an extention, only has time to store 10 stacks <3
 
i think the wait timer for the guild bank deposit of items on the Grim batol Gbank Embersilk could do with an extention, only has time to store 10 stacks <3
I'll be sending out an update (eventually) that'll increase the standard wait time after the bot executes the Lua selling script.



what profile is 2nd best to botanica, gph wise?
From raw gold - Gundrak is the next highest (rated) farm. There may betters.
 
hey guys, is there anyway u can create a CustomBehavior to check wether ur in cat form, if not it will switch u to cat form????
 
hey guys, is there anyway u can create a CustomBehavior to check wether ur in cat form, if not it will switch u to cat form????
The combat routine would handle this. So an edit would need to be made there.

Most profiles have scripts that force you to use speed buffs / forms between pulls.
 
Hi Echo i was kinda greedy and shortened wait timers after entering and leaving instance. Can it cause bot to stop if game is loading too long? It didnt hapened yet but i wonder.
 
Back
Top