Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26725
  • Joined

  • Last visited

  • Days Won

    209
  • Feedback

    100%

Everything posted by Khaleesi

  1. Will take a look at that Thx for the explanation!
  2. It's means it should sleep for max 4-5 seconds OR stop the sleep when the player is animating That's a conditionalsleep, it sleep until the condition is met or until the time is up ^^ it is to prevent spamm clicking the tree after clicking it
  3. Could try a proxy, might help in that case Enjoy! Enjoy!
  4. That's what most people do ... streamers and other legit players to speed up the exp Like I said, I can add a function to not click it all the time and just wait ... no big deal ^^ You mean after crafting the runes?
  5. It takes a long time if you wait right? I could add an option for that it's because it keeps track of blocks chiseled ... You can't detected how many shards are in the inventory, best is just to bring whatever you need to that place
  6. 8 hour a day is a lot... I would recommend doing 2-3h a day max on accounts you really care about... Normally they don't flag your IP ... Getting banned within 1-2h is pretty quick but possible, did anything special on them? Were they new accunts or older?
  7. All you need is this mate You need to make use of your onLoop, No need to do multiple actions in 1 onLoop cycle ^^ if (getInventory().contains("Logs")) { getInventory().drop("Logs"); } else { if (!myPlayer().isAnimating()) { RS2Object tree = getObjects().closest("Tree"); if (tree != null) { if (tree.interact("Chop down")) { new ConditionalSleep(random(4000, 5000)) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating(); } }.sleep(); } } else { //No Valid Tree Found } } else { //Do nothing, We are Chopping, Just wait ... } }
  8. If you are having issues starting the script please be patient. New script version is pending! Sorry for the inconvenience! Khaleesi
×
×
  • Create New...