Jump to content

dazeldo

Members
  • Posts

    143
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by dazeldo

  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. 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.
  5. 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.
  6. The bot has been cutting trees (no input = idle) for 5? minutes causing it to get logged out for being idle.
  7. Maybe this can help: https://osbot.org/forum/topic/145029-10-minute-scripts-make-an-aio-agility-script-in-10-minutes/
  8. Happy to see you fixed it!
  9. Make sure you implement MessageListener like this: public class ScriptClass extends Script implements MessageListener and also add: getBot().addMessageListener(this); to your onStart().
  10. Remember to not bot too much and use breaks, good luck!
  11. https://2captcha.com/2captcha-api#invisible
  12. What happens if you enter the email you log in to the game with?
  13. I think you can only have one client but have two bot tabs running.
  14. I've got a working account creator, semi-working account unlocker, moneymaking script (Tutorial island + 7qp included), muling script. Been working on it for a while, takes a long time since I didn't have much experience at all when I began this journey. I'm currently trying to get everything setup nicely before actually starting my farm, mostly working on database support right now. Hit me up if you're stuck on something and I may be able to help.
  15. Good luck! I'm currently working on something similar.
  16. http://lmgtfy.com/?q=proxy+checker+username+password
  17. Don't use proxy6, I used one of their proxies on an already made account with tutorial island done and got locked. Proxy located in the US, account was made in US, still got locked.
  18. I tried this earlier today and it didn't work for me.
×
×
  • Create New...