Jump to content

Vilius

Scripter II
  • Posts

    1495
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Vilius

  1. 1. Walk path only accepts List<Position> as its parameter not Position[], because its the new walking system not the one from 2014 2. You have to import java.util.List; not import java.awt.List; Because awt.List is a display element and util.List is a generic type for collections
  2. https://osbot.org/forum/topic/137156-quantum-account-shop-cheap-tutorial-island-accounts-bulk/
  3. 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);
  4. 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
×
×
  • Create New...