Skip to content

Instantly share code, notes, and snippets.

@lordgmage
Created February 17, 2015 01:09
Show Gist options
  • Save lordgmage/af6ba7c1df5eed7067c3 to your computer and use it in GitHub Desktop.
Save lordgmage/af6ba7c1df5eed7067c3 to your computer and use it in GitHub Desktop.
bankingg
Bank.open();
Time.sleep(new SleepCondition() {
@Override
public boolean isValid() {
return Bank.isOpen();
}
}, 3000);
System.out.print("Banking");
Menu.sendAction(646, 1521, 3, 21012);
Time.sleep(new SleepCondition() {
@Override
public boolean isValid() {
return Inventory.isEmpty();
}
},1000);
Bank.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment