Jump to content

Idle Script


Recommended Posts

Posted

Now that the Grand Exchange has a idle timer of either 6-18 hours idk really which is which. Here's a simple as hell script to does some random stuff for the meantime.

package main.script.Idle_Player;

import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;

@ScriptManifest(author = "Booleans Yay", info = "Idling made ez pz", name = "Idle Player", version = 1, logo = "")
public class IdlePlayer extends Script {

	@Override
	public int onLoop() throws InterruptedException {
		camera.movePitch(random(180, 180));
		mouse.moveRandomly();
		return random(10_000, 25_000);
	}
}

Feel free to build off of this to your own style you'd prefer, I literally did this under 10 seconds work and did it because it's needed for ingame pretty badly now a days.

 

ok thanks cool!

  • Like 2
Posted (edited)
25 minutes ago, Lewis said:

moving camera doesnt log you out? i thought your player had to move or something?

No, if the player account is nulled to any actions performed on the account it'll log itself out, but if the camera is moving and mouse is moving then the game will detect the player is looking for something or doing something.

Edited by Booleans YAY
  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...