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.

closestNPC(...)

Featured Replies

I have made a thread on this before, and it was said to have been fixed, but it's not.

 

Basically, when there are two NPCs on a tile and you try to interact with one of them, nothing will happen. It works fine if the closest NPC is on its own tile or if one moves.

NPC fishingSpotNPC = closestNPC(2722);
 
if (fishingSpotNPC != null) {
fishingSpotNPC.interact("Use-rod");
}

Edited by Aeterna

Loop trough the object in the region and check if it has the id you want.

Example:

 

 

Iterator<NPC> it = client.getLocalNPCs().iterator();
while (it.hasNext()){
	NPC n = it.next();
	if(n.getId() == 2722 && fishingSpotNPC == null){
		fishingSpotNPC = n;

	}
}

It won't find the npc the closest to your character but it is an easy fix.

 

 

Edited by Xerion

or you can try to use this

   public NPC getNPC(int... ids) {
		List<NPC> npcs = client.getLocalNPCs();
		int d = 999;
		NPC temp = null;
		for (NPC n : npcs) {
			if (n != null) {
				for (int id : ids) {
					if (n.getId() == id) {
						if (distance(n) < 15 && !n.isUnderAttack()
								&& distance(n) < d) {
							d = .distance(n);
							temp = n;
						}
					}
				}
			}
		}
		return temp;
	}
	
  • Author

I have an alternate, but it's not as responsive as the API is with finding spots that aren't grouped together.

Guest
This topic is now closed to further replies.

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.