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.

No reqs banks

Featured Replies

Hi!

Does anybody have a list of banks without requirements? I.e. no skills, quests, etc.

Both p2p/f2p

Thanks!

You can access some predefined banks through the API by calling Banks

EX.

Area varrockWestBank = Banks.VARROCK_WEST;

Area[] banks = {Banks.VARROCK_EAST, Banks.VARROCK_WEST, Banks.AL_KHARID, Banks.DRAYNOR};

It has most of the banks in that class.

If you need to add banks you could create a class that extends from Banks than just add custom bank locations like so.

import org.osbot.rs07.api.map.Area;
import org.osbot.rs07.api.map.constants.Banks;

public final class BanksExtended extends Banks {
    public static final Area CUSTOM_BANK = new Area(0, 0, 0, 0);
}

Edited by BravoTaco

8 hours ago, BravoTaco said:

You can access some predefined banks through the API by calling Banks

EX.


Area varrockWestBank = Banks.VARROCK_WEST;

Area[] banks = {Banks.VARROCK_EAST, Banks.VARROCK_WEST, Banks.AL_KHARID, Banks.DRAYNOR};

It has most of the banks in that class.

If you need to add banks you could create a class that extends from Banks than just add custom bank locations like so.


import org.osbot.rs07.api.map.Area;
import org.osbot.rs07.api.map.constants.Banks;

public final class BanksExtended extends Banks {
    public static final Area CUSTOM_BANK = new Area(0, 0, 0, 0);
}

The bank class just contains some pre defined bank areas, no?

So if your wanted bank is not in the class you have to define an Area constant yourself.

Final area *bankname* = new Area(x1, y1, x2, y2) ;

Add -*bankname* to an enum list.

 

Correct me if im wrong please. Im currently learning to code.

6 hours ago, Promo said:

The bank class just contains some pre defined bank areas, no?

So if your wanted bank is not in the class you have to define an Area constant yourself.

Final area *bankname* = new Area(x1, y1, x2, y2) ;

Add -*bankname* to an enum list.

 

Correct me if im wrong please. Im currently learning to code.

Yeah for any banks not in that class you will have to create a new object that contains the area information. You can put this into an enum or you can create a class that extends from the Banks class so you don’t have to call two separate things to get all the banks.

  • Author

I know how to use and implement banks. Just need to know which banks have no reqs and which do. Got a pre-defined list of ALMOST all banks in the game, but some have requirements. Such as lumby lower, fishing guild, etc etc.

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.