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

Mining a rock

Gonzo

New Member
Joined
Sep 21, 2014
Messages
4
Reaction score
0
The documentation for the API isn't very thorough or I'm just not looking hard, so I'm looking on how to interact with things in the world. How do you exactly mine a rock, just the single line to do it. I can handle everything else.
 
Look for
UseDoodadSkill();

first arg - skill Id or skill name
second arg - DoodadObject
third arg - is bot should auto come to this doodad
 
If UseDoodadSkill fails, is there a way to find out why? Sometimes the bot will hang on UseDoodadSkill then return failure after a few seconds (I'm guessing something times out?).
 
If UseDoodadSkill fails, is there a way to find out why? Sometimes the bot will hang on UseDoodadSkill then return failure after a few seconds (I'm guessing something times out?).
if (!UseDoodadSkill)
Log(GetLastError().ToString());
 
Back
Top