Jump to content

q600

Members
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male
  • Location:
    Toronto

Recent Profile Visitors

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

q600's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. Update your library, run the script, and fix what goes wrong (if anything).
  2. Re download, update 1.1 pushed
  3. You need coins in inventory, and hides in bank. works fine for me, will look into it when I’m home
  4. Learn how to write your own scripts, look into a bot management system, and if you’re Botting F2P be prepared to use a LOT of accounts. Remember, nothing comes for free, you will have to invest into your project.
  5. The system flags you, and then Jagex staff review and make the final call, so it doesn’t matter when you bot, or even how “safely” you bot, eventually you will get banned (I had an old username login that I botted probably 12-15 hours total on, it got banned almost one year later)
  6. Tans cowhides in Al-Kharid, start anywhere with coins in inventory! Post proggies and comments/criticism below! If fully intend on updating this script, so tell me what features you want added! q600's Tanner.jar
  7. Yes, good catch there, and what I mean is that the script wont even start, I don't even get a chance to pause or stop it
  8. Trying to create a basic script to, chop, and the burn the whole inventory of logs. when I use this code, the script wont even start, but if I remove the burnLogs method, it runs fine? also cannot for the life of me figure out how to how the next tree, not asking to be spoonfed, but if someone wants to hop on discord and help me out that would be great! void cutTree() { if(!getInventory().isFull()) { if(!myPlayer().isAnimating() && tree != null) { tree.interact("Chop Down"); new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating(); } }.sleep(); } } } void burnLogs() { if (!"Tinderbox".equals(getInventory().getSelectedItemName())) { if (getInventory().isItemSelected()) { getInventory().deselectItem(); } else { getInventory().interact("Use", "Tinderbox"); } } else if (getInventory().getItem("logs").interact()) { new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return !myPlayer().isAnimating(); } }.sleep(); } }
×
×
  • Create New...