October 23, 20187 yr I'm looking for something that can dodge logging out. The character will just be afk. I just hope there is a way to dodge the log out while staying on same spot forever.
October 23, 20187 yr Author Sort of like how defence pures kick monks all days. But I'd rather not be in combat. Trading isn't it
October 23, 20187 yr Jagex has a 6 hour limit put into place. Why not just have a script idle AFK with minimal movements and then every 6 hours after kicked it will relog? No need to be on 24 hours straight
October 23, 20187 yr 7 hours ago, Juggles said: Jagex has a 6 hour limit put into place. Why not just have a script idle AFK with minimal movements and then every 6 hours after kicked it will relog? No need to be on 24 hours straight very true cuz it realy isnt suspicious to be logged in 24hours str8. ?
October 23, 20187 yr I have something just move the mouse on or off the screen every 0-3 minutes. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "apa", info = "Afks", logo = "", name = "AFK", version = 1.0) public class Main extends Script { public void onStart(){ } public int waitTime(int min, int max) { return (int)(Math.random() * (max - min)) + min; } public int onLoop() throws InterruptedException { if (mouse.isOnScreen()) { mouse.moveOutsideScreen(); } else { mouse.move((int)(100 + (Math.random() * 660)), (int)(100 + (Math.random() * 400))); } return waitTime(1000, 240000); //1 sec to 4 mins. } } Edited October 23, 20187 yr by apa
October 23, 20187 yr 1 hour ago, Malcolm_OS said: I don't think this would avoid the 5 minute AFK timer because you're not actually interacting with anything in the game. I use it in one of my scripts and it doesn't logout. You only need to move your mouse over the client to stay logged in.
Create an account or sign in to comment