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.

Free and Open Source || Simple Chatting Anti-ban

Featured Replies

Hello everyone,

I'm releasing my second script (actually it's like mini-script), as the name says it chats with other people.

Source:

private Dialogue Dialogue;
	boolean said;
	int Index;


private void Respond() throws InterruptedException {
		//Message sending method
		if(said == true){
			sleep(random(2000,4500));
			Dialogue = new Dialogue();
			List<String> RespondSpeach = Dialogue.getNumberList1();
			keyboard.typeString(RespondSpeach.get(Index) , true);
			said = false;
		}
	}

	public void onMessage(Message m) throws InterruptedException {
		//Message recieveing method
			Dialogue = new Dialogue();
	     List<String> ReceivedSpeach = Dialogue.getNumberList();
		for (String word : ReceivedSpeach){
		    if (m.getMessage().contains(word)){
		    	Index = ReceivedSpeach.indexOf(word);
		    	said = true;
		    }
		}
    }

and here is the dialogue class:

Spoiler

package Chatter;

import java.util.ArrayList;
import java.util.List;

public class Dialogue {
	private List<String> ReceivedSpeach;
	private List<String> RespondSpeach;
	
	 public ArrayList<String> getNumberList() {
		 //Messages to receive 
		 ReceivedSpeach = new ArrayList<String>();
		 ReceivedSpeach.add(0, "Hello");
		 ReceivedSpeach.add(1, "Finally someone who is not a bot");
		 return (ArrayList<String>) ReceivedSpeach;
		 }
	 
	 public ArrayList<String> getNumberList1() {
		 //Messages to send
		 RespondSpeach = new ArrayList<String>();
		 RespondSpeach.add(0, "Hi");
		 RespondSpeach.add(1, "Lol" +System.lineSeparator()+ "Yh bots are literally everywhere is osrs");
		 return (ArrayList<String>) RespondSpeach;
		 }
}

 

 

 

Hope that some people find it useful:D

Edited by kadiem

Create an account or sign in to comment

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.