March 25, 20178 yr 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!
March 25, 20178 yr Author 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 March 25, 20178 yr by Booleans YAY
March 25, 20178 yr Author 12 minutes ago, Imateamcape said: random(180, 180)? random value as i said i did in 10 seconds and people can switch to whatever whenever.
July 1, 20178 yr On 3/25/2017 at 0:59 PM, Booleans YAY said: random value as i said i did in 10 seconds and people can switch to whatever whenever. -180,180
Create an account or sign in to comment