Loo Looon Posted October 23, 2018 Share Posted October 23, 2018 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. Quote Link to comment Share on other sites More sharing options...
Loo Looon Posted October 23, 2018 Author Share Posted October 23, 2018 Sort of like how defence pures kick monks all days. But I'd rather not be in combat. Trading isn't it Quote Link to comment Share on other sites More sharing options...
Juggles Posted October 23, 2018 Share Posted October 23, 2018 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 Quote Link to comment Share on other sites More sharing options...
gekkebakker Posted October 23, 2018 Share Posted October 23, 2018 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. Quote Link to comment Share on other sites More sharing options...
apa Posted October 23, 2018 Share Posted October 23, 2018 (edited) 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, 2018 by apa Quote Link to comment Share on other sites More sharing options...
apa Posted October 23, 2018 Share Posted October 23, 2018 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. Quote Link to comment Share on other sites More sharing options...
Valiant One Posted October 24, 2018 Share Posted October 24, 2018 Just set up breaking patterns and you'll be good. Quote Link to comment Share on other sites More sharing options...