Jump to content

dazeldo

Members
  • Posts

    143
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

2094 profile views

dazeldo's Achievements

Steel Poster

Steel Poster (4/10)

31

Reputation

  1. private void lightFire() { if (standingOnFire()) { getEmptyPosition().ifPresent(position -> { WalkingEvent walkingEvent = new WalkingEvent(position); walkingEvent.setMinDistanceThreshold(0); execute(walkingEvent); }); } else if (!"Tinderbox".equals(getInventory().getSelectedItemName())) { getInventory().getItem("Tinderbox").interact("Use"); } else if (getInventory().getItem("Logs").interact()) { Position playerPos = myPosition(); Sleep.sleepUntil(() -> !myPosition().equals(playerPos), 10_000, 600); } } private boolean standingOnFire() { return getObjects().singleFilter(getObjects().getAll(), obj -> obj.getPosition().equals(myPosition()) && obj.getName().equals("Fire")) != null; } private Optional<Position> getEmptyPosition() { List<Position> allPositions = myPlayer().getArea(10).getPositions(); // Remove any position with an object (except ground decorations, as they can be walked on) for (RS2Object object : getObjects().getAll()) { if (object instanceof GroundDecoration) { continue; } allPositions.removeIf(position -> object.getPosition().equals(position)); } allPositions.removeIf(position -> !getMap().canReach(position)); return allPositions.stream().min(Comparator.comparingInt(p -> myPosition().distance(p))); } Take a look at this! From @Explv's AIO.
  2. If your IP address is flagged you will get locked/banned when doing R&J from my experience. Either find unflagged proxies, find a method that doesn't need 7qp or go bot p2p.
  3. Buy proxy and unlock accounts when they get locked.
  4. Check for spelling errors in your proxy
  5. I created accounts like this: email+1@gmail.com, email+2@gmail.com It sent me the links for confirming the email, but not the links for unlocking. Did Jagex change something? I tried verifying before lock too, didn't work. Any ideas? EDIT: lol I'm stupid, didn't even check spam inbox since other emails came straight to inbox.
  6. Good luck, will be fun to follow!
  7. The bots all have to be clients, can't run a server from within script. I think making it multi-threaded is your best bet.
  8. The bot has been cutting trees (no input = idle) for 5? minutes causing it to get logged out for being idle.
  9. Maybe this can help: https://osbot.org/forum/topic/145029-10-minute-scripts-make-an-aio-agility-script-in-10-minutes/
  10. Happy to see you fixed it!
  11. Make sure you implement MessageListener like this: public class ScriptClass extends Script implements MessageListener and also add: getBot().addMessageListener(this); to your onStart().
  12. Remember to not bot too much and use breaks, good luck!
  13. Press Add bot in client
  14. https://2captcha.com/2captcha-api#invisible
×
×
  • Create New...