Jump to content

ThatGamerBlue

Members
  • Posts

    407
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by ThatGamerBlue

  1. Can pay paypal or osrs gp, no idea what this is worth so throw me a price HP must be 25 or higher.
  2. every now and then it gets stuck here https://i.imgur.com/ORCIzBs.png as said in these replies good script though
  3. When you level up you stop skilling, how can I detect this and restart? Right now I'm using message detection using onMessage but It doesn't seem to work. boolean doBreak = false; @Override public void onMessage(Message m){ if(m.getType() == MessageType.GAME && m.getMessage().contains("You are now level") && !doBreak){ doBreak = true; } } @Override public int onLoop() throws InterruptedException { // code to start making pizza while(getInventory().contains("Anchovies") && getInventory().contains("Plain pizza")){ sleep(random(250, 500)); if(doBreak){ doBreak = false; sleep(random(100, 200)); break; } } } Full code: https://hastebin.com/defifurane.java
  4. can you make it when fishing lobsters at musa point/karamja it can sell to the general store?
×
×
  • Create New...