Booleans YAY Posted March 25, 2017 Share Posted March 25, 2017 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! 2 Quote Link to comment Share on other sites More sharing options...
Lewis Posted March 25, 2017 Share Posted March 25, 2017 moving camera doesnt log you out? i thought your player had to move or something? Quote Link to comment Share on other sites More sharing options...
Booleans YAY Posted March 25, 2017 Author Share Posted March 25, 2017 (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 March 25, 2017 by Booleans YAY Quote Link to comment Share on other sites More sharing options...
Team Cape Posted March 25, 2017 Share Posted March 25, 2017 random(180, 180)? Quote Link to comment Share on other sites More sharing options...
Booleans YAY Posted March 25, 2017 Author Share Posted March 25, 2017 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. Quote Link to comment Share on other sites More sharing options...
Chilz1 Posted July 1, 2017 Share Posted July 1, 2017 how do i get this on my osbot client Quote Link to comment Share on other sites More sharing options...
Chilz1 Posted July 1, 2017 Share Posted July 1, 2017 ? Quote Link to comment Share on other sites More sharing options...
Cloxygen Posted July 1, 2017 Share Posted July 1, 2017 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 Quote Link to comment Share on other sites More sharing options...