What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Please help with code to pick up pack from a farm

kowalski987

New Member
Joined
Oct 14, 2014
Messages
33
Reaction score
0
Can someone help me with the code to pick up a pack from a farm. I tried this code, and it does pick up the pack, but also continues to try to pick up other packs, and does not stop even after after the toon gets the "Overburdened" buff. What would be the code to pick up a pack and move on to the next task. Thank you in advance for any help you can give me.

while(getBuff("Overburdened") == null)
{
CollectItemsAtFarm("Falcorth Aged Honey","Remove item and place in Bag.","Your Name");
Thread.Sleep(1000);
}
 
I need a function that would pick up the item, then do the check to see if it needs to stop the loop to pick up an item.
When I use

"CollectItemsAtFarm("Falcorth Aged Honey","Remove item and place in Bag.","Your Name");"

the bot collects the first pack, then does not stop, but keeps trying to collect all “Flacorth Aged Honey” that are at the farm, even though it already has a pack on its back. So would anyone know a function to just pick up one item at a time and do a check or possibly write a Dooda to pick up one item and do a check. I tried modifying the Doodas from “Simple Farm Cart Traderunner” but I cant figure it out. Please help.
 
Last edited:
You might want to make that remotely readable by wrapping CODE around it.
 
Back
Top