July 27, 201510 yr The only auto clickers I can find are once like garys hood which requires your actual computer mouse, making you unable to do anything else on the computer. I would love an auto clicker that is integrated in a bot client so I can actually do other stuff on my computer.
July 27, 201510 yr Records the first place you click and clicks there at a rate you enter there in ms import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; /** * Created by Me on 27/07/2015. */ @ScriptManifest(author = "Isolate", name = "Clicker", version = 0.1, info = "", logo = "") public class Clicker extends Script { Point p = null; int sleepBetweenClicks = 0; JOptionPane panel = new JOptionPane(); @Override public void onStart() throws InterruptedException { super.onStart(); sleepBetweenClicks = Integer.valueOf(panel.showInputDialog("Enter Sleep Between Clicks (ms)")); getBot().addMouseListener(new MouseListener() { @Override public void mouseClicked(MouseEvent e) { if(p == null){ p = e.getPoint(); } } @Override public void mousePressed(MouseEvent e) { } @Override public void mouseReleased(MouseEvent e) { } @Override public void mouseEntered(MouseEvent e) { } @Override public void mouseExited(MouseEvent e) { } }); } @Override public int onLoop() throws InterruptedException { if(p != null && sleepBetweenClicks > 0){ if(mouse.getPosition() == p){ mouse.click(true); }else{ mouse.move(p.x, p.y); } } return (sleepBetweenClicks); } } Edited July 27, 201510 yr by Isolate
July 27, 201510 yr I used apa auto alcher script on here till 94 it's free if u use a paid script u can stun alch and get like 130k xp per hr