Guildhall Herbalist Feeder

blackee

Senior Member
All,

Wanted to pass on a short script which was written for the Burynai shiny harvester, but I changed it to pull shinies off of the "Herbalist Harvester" guild hall amenity. I didn't write this code, but just changed it a little.

Copy into notepad and rename herb. Target the herb guy, and then type run herb 5. You must have sets of bag, liquid and bone in your inventory.

Blackee.

/*
Guildhall Herbalist Shiner Feeder

Type "run feeder 5" in console, where the 5 is would be how many times you want to feed the burynai pet.
*/

variable bool Runing=True
variable int Runs=0
variable int SeekerID=0
function main(int TotalRuns=5)
{
wait 30
if ${SeekerID}==0
{
SeekerID:Set[${Actor[Mukmuk].ID}]
}
while ${Runs:Inc}<=${TotalRuns}
{
echo "Feeding ${Runs}/${TotalRuns}"
EQ2Execute /hail
EQ2UIPage[ProxyActor,Conversation].Child[composite,replies].Child[button,1]:LeftClick

wait ${Math.Rand[15]:Inc[10]}
}
echo Shiney Feeding Done
}
 

NightGod

Well-Known Member
FWIW, you don't have to have fertilizer bits actually in your bags, it will pull it from bank and shared bank just as well. The only place you can put stuff if you don't want it grabbed is either an alt or in a broker box.
 

Johnnyray76

Well-Known Member
I really like this one. Thank you.

I would like to add for the new people starting out on doing this.

Make sure, if your using the : Guildhall Herbalist, that you rename it to " Guildhall Herbalist Shiner Feeder" also I used ( Notpade ++ ) to copy the short script too.

* Notepade ++ is a free download as well.

Thank you for this. Good Job!
 
Top Bottom