TNBJeff 2 Posted January 31 Share Posted January 31 Anyone able to help me with a camera rotator to stay logged in? I have never done anything with scripting before Quote Link to post Share on other sites
Gunman 449 Posted January 31 Share Posted January 31 @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 post Share on other sites
Tom 1814 Posted February 1 Share Posted February 1 (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 by Tom Quote Link to post Share on other sites