Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public int onLoop() throws InterruptedException {
- if ((this.client.getRunEnergy() > 40) && (this.state != State.MINE)) {
- try {
- setRunning(true);
- } catch (Exception localException) {
- }
- }
- if (this.state == State.TOBANK) {
- return toBank();
- } else if (this.state == State.TOMINE) {
- return toMine();
- } else if (this.state == State.MINE) {
- return mine();
- } else if (this.state == State.BANK) {
- return bank();
- }
- AntiBan();
- return 250 + random(50);
- }
Advertisement
Add Comment
Please, Sign In to add comment