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.

bypass osbot's stopping script because you've tried to login too many times?

Featured Replies

  • Author

 

You can prevent the AUTO_LOGIN Random event from activating via response codes.

You may have to play around with shouldActivate & onResponseCode.

I 've done this before so it's deffo possible,  but not sure if this kinda stuff is allowed for SDN scripts.

		getBot().getRandomExecutor().registerHook(new RandomBehaviourHook(RandomEvent.AUTO_LOGIN) {
			private RandomSolver solver = getBot().getRandomExecutor().forEvent(RandomEvent.AUTO_LOGIN);
			@Override
			public void onResponseCode(int c) throws InterruptedException {
				//INSERT WORK_AROUND HERE
			}
			@Override
			public void onStart() throws InterruptedException {
				super.onStart();
				solver.onStart();
			}
			@Override
			public boolean shouldActivate() {
				return solver.shouldActivate(); //Play around with this
			}
			@Override
			public int onLoop() throws InterruptedException {
				super.onLoop();
				return solver.onLoop();
			}
			@Override
			public void onExit() throws InterruptedException {
				super.onExit();
				solver.onExit();
			}
		});
		
	}

why wouldn't it be allowed? alek looks through the code right?

why wouldn't it be allowed? alek looks through the code right?

I don't think the security is the issue he's talking about.

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.