TNBJeff Posted January 31, 2021 Share Posted January 31, 2021 Anyone able to help me with a camera rotator to stay logged in? I have never done anything with scripting before Quote Link to comment Share on other sites More sharing options...
Gunman Posted January 31, 2021 Share Posted January 31, 2021 @TNBJeff Done. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Gunman", info = "", name = "Camera Rotate Thing", version = 1.0, logo = "") public class Main extends Script { @Override public int onLoop() { getCamera().moveYaw(random(0, 360)); return random(60_000, 240_000); } } 1 Quote Link to comment Share on other sites More sharing options...
Tom Posted February 1, 2021 Share Posted February 1, 2021 (edited) 16 hours ago, Gunman said: @TNBJeff Done. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Gunman", info = "", name = "Camera Rotate Thing", version = 1.0, logo = "") public class Main extends Script { @Override public int onLoop() { getCamera().moveYaw(random(0, 360)); return random(60_000, 240_000); } } maybe move the pitch as well, if all he wants to do is stay logged in i guess it doesnt matter though lol Edited February 1, 2021 by Tom Quote Link to comment Share on other sites More sharing options...