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.

Fruit Stall Thiever

Featured Replies

Hi all, 

This script steals from either of the fruit stalls located in the houses in Kourend.

1443167538_Fruitstallhouse.png.13b462c427d9eb427341b7574f690c4c.png

Script features

  • Uses either of the stalls inside the house
  • Drops everything found in the inventory before beginning
  • Uses a "Pick 1 Drop 1" method

Though the task is fairly simple, the script does not offer any anti-bans, and its sole purpose is to steal the fruit to maximize XP/ph, so as with any bot, use it at your own discretion.

Thanks and enjoy! :)

To add the script; 

Download the .jar file and add it to your C:\Users\*YOURUSERNAME*\OSBot\Scripts folder. Open up Osbot and refresh the bot list, and it should come up as "Fruit Stall Thiever". 

or

Scripts Source Code

package core;

import java.awt.Graphics2D;

import org.osbot.rs07.api.model.RS2Object;
import org.osbot.rs07.api.ui.Skill;
import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;

@ScriptManifest(author = "Marcus", info = "Steals fruits", name = "Fruit Stall Thiever", version = 1, logo = "")

public class Main extends Script {

    @Override
    public void onStart() throws InterruptedException {
        getExperienceTracker().start(Skill.THIEVING);
    }

	@Override
	public int onLoop() throws InterruptedException {
		RS2Object stall = getObjects().closest("Fruit Stall");
		if (!getInventory().isEmpty()) {
		  getInventory().dropAll();
		} else if (stall != null && !myPlayer().isAnimating()) {
		  stall.interact("Steal-from");
		}
		return 700;
	}


    @Override
    public void onPaint(Graphics2D paint) {
        int tXp = getExperienceTracker().getGainedXP(Skill.THIEVING);
        int tXpph = getExperienceTracker().getGainedXPPerHour(Skill.THIEVING);

        super.onPaint(paint);
        paint.drawString("Thieving XP: " + tXp, 387, 328);
        paint.drawString("Thieving XP/PH: " + tXpph, 387, 313);
    }

}

 

Fruit stalls.jar

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.