Skip 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.

IronMan Grounditem pickup

Featured Replies

Making a Hillgiant script for my F2P HCIM that loots and buries Big Bones. Is there any way I can have the Script only loot my own drops as currently my loot method will spam click other players their bones and keeps toggling the message I can't pick up other players drops.

current method I'm using:

```

private void loot() throws InterruptedException{
GroundItem bigBones = getGroundItems().closest("Big bones");
if (bigBones != null && !myPlayer().isAnimating() && !getInventory().isFull()) {
    bigBones.interact("Take");
    log("Got some bones.");
    new ConditionalSleep(2500) {
        @Override
        public boolean condition() {
            return getInventory().contains(;
        ;

 

Also if my inventory already contains Big Bones and I want to loot more big bones what conditional sleep can I use to prevent my player from spam-clicking the Bones?

The current method only works for the first bone it picks up:

new ConditionalSleep(2500) { @Override public boolean condition() { return getInventory().contains("Big bones");

Get the position of the monster you are interacting with & loot items only on that position, this won't always be correct but it's a start.

For a fail safe use the onMessage method to check if the loot isn't yours I guess.

 

Yes as stated above store the position of the NPC and only grab items of that monster once you kill it. Now if someone else drops an item on your NPC position it will screw it up but you can do onMessage to then skip that item. 

A combination of:

On 5/27/2019 at 11:52 PM, Neanel said:

Get the position of the monster you are interacting with & loot items only on that position, this won't always be correct but it's a start.

For a fail safe use the onMessage method to check if the loot isn't yours I guess.

 

And a looting API that remembers which items it couldn't pick up so as to avoid them completely.

Edited by liverare

  • 3 months later...

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

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.