Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/07/25 in all areas

  1. Nice work ran for one hour now working very well.
    1 point
  2. I'd love to take a look, can I see? I would fix it in a heartbeat and make sure it works perfectly for you. Even if that's outside my control I can still apply my own fixes and overrides
    1 point
  3. I gave it a go but it seems to get stuck in the banking process? Just stand at a certain cordinate. Seems to be a web walking issue ? IDK if you can even adress it or if its OSbot itself ?
    1 point
  4. Hey Czar! Amazing script, is it possible to have a screenshot of your setup? I really want to avoid bans to the best of my ability. Thanks!
    1 point
  5. Hey there welcome back Either dm me (or any other mod) or come official osbot discord, we'll sort this out for you ASAP.
    1 point
  6. my problem solved when i wielded a blowpipe instead of a bowfa and went into the cave hope this helps! ive gotten 4 fc now!
    1 point
  7. I've farmed a few capes with this script. Got one on an ironman a few days ago.
    1 point
  8. Create a class called Breaker and add this in: import org.osbot.rs07.script.RandomEvent; import org.osbot.rs07.script.RandomSolver; import org.osbot.rs07.script.ScriptManifest; public class Breaker extends RandomSolver { public Breaker() { super(RandomEvent.BREAK_MANAGER); } @Override public boolean shouldActivate() { //Condition for the break manager to be activated return false; } @Override public int onLoop() throws InterruptedException { //Code which should be executed while the break manager is activated //example log("hi"); return 0; } } Add this to your scripts onStart() Breaker breaker = new Breaker(); breaker.exchangeContext(getBot()); bot.getRandomExecutor().overrideOSBotRandom(breaker);
    1 point
×
×
  • Create New...