Guest User

Untitled

a guest
Jul 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public boolean openChest() {
  2. if (Widgets.get(762).validate()) {
  3. return true;
  4. }
  5. Location chest = Locations.getNearest(chestID);
  6. if (chest != null) {
  7. chest.interact("Open");
  8. for (int i = 0; i < 50 && !Widgets.get(762).validate(); i++) {
  9. sleep(40);
  10. }
  11. }
  12. return Widgets.get(762).validate();
  13. }
Add Comment
Please, Sign In to add comment