Jump to content

kerklais

Members
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

kerklais's Achievements

Newbie

Newbie (1/10)

2

Reputation

  1. Doesn't work for me, it always clears the arguments before starting.
  2. yeah mirror works, but bot doesn't currently know how to log in after break example. If using jagex launcher.
  3. - Mirror or regular client? - What location and what tree? - Printscreen with the Osbot console enabled and script paint when getting stuck. Mirror Woodcutting guild, yew Not really a bug but if you say its human like why bot is always clicking to same spot and then bank. So it always presses same spot on map, then it banks. Then tried to do custom location in woodcutting guild. It cuts the trees well but when it tries to bank it fucking runs like 50km to bank, when there is a bank like 4 tiles away. And would love if deposit box would be possible banking solution.
  4. Hi! Can I get a trial please!
  5. Yep or actually trying to check if there's any players nearby if there is the script will hop..
  6. public int onLoop() throws InterruptedException { if (AREA.contains(myPlayer())) { Player closest = getPlayers().closest(p -> p != null && !p.equals(myPlayer())); if (closest !=null) log("Hopping...."); getWorlds().hopToP2PWorld(); wait(5000); //freezes here...? }else { log("Walking"); if (getWalking().walk(AREA)); new ConditionalSleep(3000, 1000) { @Override public boolean condition() throws InterruptedException { return (AREA.contains(myPlayer())); } }.sleep(); } return 100; I tested those and they work. But now I'm trying to compound that script with world hopping.. Any help?
  7. Hi, i have been working on my script for a while now and can't resolve how i can check if there is players nearby? I tried to do something with (AREA.contains(something.....)
  8. Just asking how i can get any item what are in the bank? Thx public int onLoop() throws InterruptedException { switch (getState()) { case BANK: Entity stall = objects.closest("Bank Booth"); if (stall != null) { stall.interact("Bank"); } break; case GET: bank.getItem("Maple Logs"); break; case WAIT: sleep(random(500, 700)); break; default: break; } return random(200, 300);
  9. I just want a fighter script. So i could edit it, because i'm pretty newbie at scripting... Thx anyways.
×
×
  • Create New...