Jump to content

RS123

Members
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RS123's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. Hmm... code didn't work. It will not open the grand exchange bank and deposit
  2. I'm kinda new so I don't understand the antiban sleep thing...
  3. if (Banks.GRAND_EXCHANGE.contains(myPlayer())) { if (bank.isOpen()) { bank.depositAll(); new ConditionalSleep(1900, 5100) { @Override public boolean condition() throws InterruptedException { return true; } }; } else { try { bank.open(); } catch (Exception e) { } } } else { walking.webWalk(Banks.GRAND_EXCHANGE); } fixed some errors But it's not working
  4. @Butters No errors. It's just not executing.
  5. This code does not open or deposit items into the GE bank. Please help! Thank you. if (!bank.isOpen()) { NPC banker = npcs.closest("Banker"); if (banker != null) { if (banker.isOnScreen()) { banker.interact("Bank"); sleep(random(450,1000)); if (!getBank().isOpen()) { getBank().open(); } } else { camera.toEntity(banker); } } else { bank.depositAll(); sleep(random(250,450)); } }
×
×
  • Create New...