Loo Looon Posted October 23, 2018 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.
Loo Looon Posted October 23, 2018 Author 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
Juggles Posted October 23, 2018 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
gekkebakker Posted October 23, 2018 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.
apa Posted October 23, 2018 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
apa Posted October 23, 2018 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.
Valiant One Posted October 24, 2018 Posted October 24, 2018 Just set up breaking patterns and you'll be good.