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!

I'd pick botanica for 85 farmers and gundrak for 90s.
Btw I bumped into weird bug but I think it is purely problem on my side. First after the bag full, the toon flew from botanica to vendor then it goes to arcatraz instead of botanica again :D
After that the toon managed to prowl and misses many mobs :P
I think the problem is purely from my side (low ISP quality and pushing too many bots)
The stealth issue is your combat routine.

Which version of Botanica is going to Arcatraz?
There's no Mesh around the ships, so it could be bad navigation.
 
The stealth issue is your combat routine.

Which version of Botanica is going to Arcatraz?
There's no Mesh around the ships, so it could be bad navigation.

I picked the one from Heavy Pulls. It entered Arcatraz and run the dungeon normally.
It does it again, but this time is not going to arcatraz but fly high into the empty space. I'll try clean install/clear cache and see if this happen again.
 
Last edited:
Just pick the dungeon where there aren't many other bots - for your sake and his, and be sure to switch once every few days :)
 
Works flawlessly after clearling stuff. Now only if I know how to add a command line so it'll auto delete some foods that won't get sell even after I have deleted protected & forcemail file. I don't really like using pugins for this, I suspect plugins might screw the profile (at least on my own exp).
 
Works flawlessly after clearling stuff. Now only if I know how to add a command line so it'll auto delete some foods that won't get sell even after I have deleted protected & forcemail file. I don't really like using pugins for this, I suspect plugins might screw the profile (at least on my own exp).
The plugin "Refreshment Detection" will auto-protect the highest level food and water in your bags.
So you must disable it.

Food and water is also protected by your "Settings & Tools" option.
Under the "Mail & Refreshment" category, erase the numbers from the boxes.

It *should* sell them then.
 
That reminds me - In the botanica profile you coded so it will delete the stuff that cannot be vendored - but I cannot find the code responsible for it. Since I haven't found any way ( outside a plugin ) to vendor the potions, I wanted to delete them in the same way with gundrak profile. is that possible ?
 
Last edited:
That reminds me - In the botanica profile you coded so it will delete the stuff that cannot be vendored - but I cannot find the code responsible for it. Since I haven't found any way ( outside a plugin ) to vendor the potions, I wanted to delete them in the same way with gundrak profile. is that possible ?

Yea, it's a LUA script.

PHP:
for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); 
	if name and string.find(name,"ITEM NAME HERE") 
		then PickupContainerItem(bag,slot); DeleteCursorItem();
		end;
	end;
end
There's other ways of using the code, but this method will allow you to delete the item by name.


On a dev-level, we would need to use the item's ID instead of the item's name due to for localization issues.
So the code I'm using in Botanica is:
PHP:
local item,l,i="32902"
for bag=0,4 do for slot=1,GetContainerNumSlots(b)
	do l=GetContainerItemLink(bag,slot)i=l and l:match("item:(%d+)")
		if i==item then PickupContainerItem(bag,slot)DeleteCursorItem()
		end
	end
end
Where "32902" is the ItemID.



These LUA scripts can be triggered by using:
<CustomBehavior File="Misc\RunLUA" Lua="script here" />

Just keep in mind that any quotes in the script will need to be escaped by using &quot;
Ex:
local item,l,i="32902" → local item,l,i=&quot;32902&quot;
"ITEM NAME HERE" &quot;ITEM NAME HERE&quot;
 
Last edited:
Great thanks - modified it :)
With that the profile is 100% afkable XD unless lightning strikes and blows up my computer. :p
 
Last edited:
Great thanks - modified it :)
With that the profile is 100% afkable XD unless lightning strikes and blows up my computer. :p
Lol. xD
That wouldn't be good. D:

Since they can be sold - I've been telling people to just add the potions to the ForceMail file so the bot just mails them off.
 
Lol. xD
That wouldn't be good. D:

Since they can be sold - I've been telling people to just add the potions to the ForceMail file so the bot just mails them off.
Yea but tbh - when 15 bots send the pots to a character, it takes years to sell them all and it's not that much extra gold :P
Or just a few minutes - but I'm lazy as hell :D

I want to use the vendor mount on my next round aswell so flying to the mailbox will lose more gph then it would gain :p
 
Last edited:
A question, In the Tempest Keep 3 of 4 bosses farm profile. It says it only farms for the pet, but doesn't the pet and mount drop of the same boss and thus it farms for that as well? I would like to know for sure so I can use that profile to farm the Ashes of Al'ar.

Edit: I have tried several instance farms, HB loads the profile travels to the instance and then HB just stops, no error. It says nothing more to do. Do I need a special plugin? Or a specific version of HB for it to work properly? (I know certain profiles don't work because they are outdated but Karazhan and Tempest Keep are supported.
 
Last edited:
Heeya - sorry to be a pain but for the future - so when I want to sell vendor from the Travelers mount thingy.

I only have to add the following to my modified Gundrak ?

<CustomBehavior File="WaitTimer" WaitTime="500" />
<CustomBehavior File="RunMacro" Macro="/cast Traveler's Tundra Mammoth\n/cast Grand Expedition Yak" />
<CustomBehavior File="WaitTimer" WaitTime="1500" />
<If Condition="(Me.HasAura(122708)) || (Me.HasAura(61425) || Me.HasAura(61447))" >
<CustomBehavior File="WaitTimer" WaitTime="1100" />
<CustomBehavior File="ForceSetVendor" DoSell="true" DoRepair="true" />
</If>
<If Condition="(Me.FreeBagSlots &lt;= 10)" >


Couldn't find other diffrences :D please correct me if i'm wrong :)

cheers
 
Last edited:
Heyho honey :P

I just want to improve my profit from your zulfarak script. Is it possible to open every graveyard there(or half of them)?
Jade Gauntlets drops there. Would be awesome :X
 
Sorry one last thing... For the life of me, I cannot figure out what "mail at 40" means on the botanica.. You have 2 different ones and they seem to be the exact same
 
what kills an HR are you guys getting on botanica profile? are you guys using anything to increase GPH?
 
Heeya - sorry to be a pain but for the future - so when I want to sell vendor from the Travelers mount thingy.

I only have to add the following to my modified Gundrak ?

Couldn't find other diffrences :D please correct me if i'm wrong :)

cheers
There's no way (on a profile level) to detect if the player has the Mammoth/Yak.
But, the bot knows if it has it.
So a cheap way of triggering the vendor routine if the player owns the mount - we force the bot to cast it, then we look to see if the mount spell is active on the player.
If it is, we then call the vendor routine.




Heyho honey :P

I just want to improve my profit from your zulfarak script. Is it possible to open every graveyard there(or half of them)?
Jade Gauntlets drops there. Would be awesome :X
Yea, it could be done.
The current script is just a simple instance grind - not an optimized run.
A optimized run will be coming later in the future though.




how is the vendor for botanica? do i need any rep or quest? or any mount?
Well, since the Botanica can only be access with a flying mount - you'll need one of those.
But the vendor doesn't require anything.




Grim Batol profile still don't mail items.

Alliance
Hmm, I'll tweak it a bit more.
Seems that Honorbuddy isn't properly detecting the mailboxes.
 
A question, In the Tempest Keep 3 of 4 bosses farm profile. It says it only farms for the pet, but doesn't the pet and mount drop of the same boss and thus it farms for that as well? I would like to know for sure so I can use that profile to farm the Ashes of Al'ar.

Edit: I have tried several instance farms, HB loads the profile travels to the instance and then HB just stops, no error. It says nothing more to do. Do I need a special plugin? Or a specific version of HB for it to work properly? (I know certain profiles don't work because they are outdated but Karazhan and Tempest Keep are supported.
This profile was coded by FrostFever a little over a year ago.
At the moment, the profile is marked as "obsolete" and it needs to be re-built.

If it's ending abruptly, then there's probably a Quest Behavior that you need.
All working Quest Behaviors are on the SVN/ZIP now - but any that haven't been tested are still archived.

Here's the Quest Behavior the profile requires, it hasn't been tested so it may no longer work.
View attachment KaelThas.cs
Also be sure to copy the Quest Behaviors over from the SVN/ZIP.​
 
Sorry one last thing... For the life of me, I cannot figure out what "mail at 40" means on the botanica.. You have 2 different ones and they seem to be the exact same
That was a profile created for someone who wanted their bot to mail if there's 40 or less bagslots left (after vendoring.)
I didn't mean for it to make it onto the ZIP. xD
 
Back
Top