Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Auto clicker

Featured Replies

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.

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 by Isolate

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

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.