Jump to content

Camaro

Scripter II
  • Posts

    687
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Camaro

  1. Post the log please. Is it not going to the mole hole?
  2. activated for 24 hours, enjoy
  3. Yeah thats what I though, should be fine if you start greater than zero. Will add a fix for that shortly just in case
  4. message me on discord camaro 09#0557 we'll try and figure out the issue
  5. activated for 24 hours, enjoy
  6. Strange, its been working for me and others for a while now. Can you try manually changing the npc attack option to hidden and see if works?
  7. 4-5 lobsters and maybe 15 mind bombs
  8. How many wizard mind bombs are you bringing
  9. The script is free for vip members, but ill give you 24 hours
  10. BotMouseListener is a class than can be used to record your mouse clicks. In order to recreate them, use the ClientMouseEventHandler import org.osbot.rs07.input.mouse.BotMouseListener; import org.osbot.rs07.script.Script; import java.awt.event.MouseEvent; public class MouseHandler extends Script { private final BotMouseListener mouseListener = new BotMouseListener() { @Override public void checkMouseEvent(MouseEvent mouseEvent) { // called when you click the canvas } }; @Override public void onStart() { getBot().addMouseListener(mouseListener); } @Override public int onLoop() throws InterruptedException { // generate a mouse event getBot().getMouseEventHandler().generateBotMouseEvent(...); return 1000; } @Override public void onExit() throws InterruptedException { getBot().removeMouseListener(mouseListener); } } https://osbot.org/api/org/osbot/rs07/input/mouse/ClientMouseEventHandler.html
  11. Have you even tried it?
  12. Ah last update had a build failure. Should be fixed by tomorrow
  13. From what I've heard, runelite is 'verified' by jagex. They would see an 'official' 3rd party client vs an 'unofficial' 3rd party client. Although I could be wrong
  14. osrs update changed the settings tab today, will be fixing soon
  15. add me on discord camaro 09#0557
  16. Why exactly is this an issue? Mind bombs restore only 2 magic levels at 49. Nothing is being wasted
  17. 500 total level along with the 33 magic and 20 hp. You would also need the zammy robes, which I dont think the script checks for at the moment, but its still an in-game requirement if 20 hp is an issue, I can remove that since the monk doesnt attack on the top floor
  18. when you say it drinks too many, do you mean its drinking them even when magic is full? And is it failing to teleport when you have the teleport option enabled?
  19. Yes, should be releasing within the next week or two
×
×
  • Create New...