Everything posted by dazeldo
-
Chop N Burn [Tree's]
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.
-
accounts locked
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.
-
accounts locked
Buy proxy and unlock accounts when they get locked.
-
OSBot won't load the RS Client while on a proxy
Check for spelling errors in your proxy
-
Gmail +1 trick not working?
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.
-
F2P Account botting progression - Mirror mode only
Good luck, will be fun to follow!
-
Muling with Sockets
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.
-
YewChopper (Randomly logged out)
The bot has been cutting trees (no input = idle) for 5? minutes causing it to get logged out for being idle.
-
Road to a Snek account
Maybe this can help: https://osbot.org/forum/topic/145029-10-minute-scripts-make-an-aio-agility-script-in-10-minutes/
-
OnMessage not working?
Happy to see you fixed it!
-
OnMessage not working?
Make sure you implement MessageListener like this: public class ScriptClass extends Script implements MessageListener and also add: getBot().addMessageListener(this); to your onStart().
-
Road to a Snek account
Remember to not bot too much and use breaks, good luck!
-
💎{1000+ Feedback}{Verified Transactor} ✨| Residential Proxy Shop ✅| NEW SOCK5 Proxies ✅| {Lifetime Sponsor}💎
Will I experience locks when doing Romeo & Juliet on these proxies on a fresh account?
-
I cant use two bots at a time
Press Add bot in client
-
how to solve recaptcha?
https://2captcha.com/2captcha-api#invisible
-
Cannot unlock my acc
What happens if you enter the email you log in to the game with?
-
What does it mean by 2 bot instances on 1 clent?
I think you can only have one client but have two bot tabs running.
-
Creating the Fully Automated F2P Botfarm I have always dreamed of!
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.
-
Creating the Fully Automated F2P Botfarm I have always dreamed of!
Good luck! I'm currently working on something similar.
-
Methods Template?
Take a look at this:
-
A brother will pass me his jar scripts as I can put them in my list of nds in osbot? thanks for your help
Put the jar file in /OSBot/Scripts and refresh scripts in the client.
-
How Do I Check The Activity Of a Proxy
https://gogetproxy.com/en/checker
-
How Do I Check The Activity Of a Proxy
http://lmgtfy.com/?q=proxy+checker+username+password
-
Proxy Suggestions
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.
-
Java error, can't install client
I tried this earlier today and it didn't work for me.