Jump to content

Vilius

Scripter II
  • Posts

    1494
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Vilius

  1. https://osbot.org/forum/topic/137156-quantum-account-shop-cheap-tutorial-island-accounts-bulk/
  2. 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);
  3. Reputation on ipb has levels a reaction can add +1 or give 0 or even give -1 reputation. Hence those reactions arent giving a +1
  4. Nope, they are setting the default close operation of the JFrame to JFrame.EXIT_ON_CLOSE instead of JFrame.DISPOSE_ON_CLOSE.
×
×
  • Create New...