Advertisement
Codydude56

[wBot] Only This Tree

Jul 30th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. /*  import bot.script.wrappers.GameObject;
  2.     import bot.script.methods.Objects;
  3. */
  4.  
  5. int TREE = 0; //Change this to tree ID.
  6. int STUMP = 0; //Change this to stump ID.
  7.    
  8. public void onlyThisTree() {
  9.     GameObject thisTree = Objects.getObject(1,2); //Change to tile.
  10.     if (thisTree.getId() == STUMP) {
  11.         sleep(500);
  12.     } else {
  13.         thisTree.interact("Chop down");
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement