osrunescapegold Posted March 18, 2019 Share Posted March 18, 2019 How would I go to check if the account is banned or not? Quote Link to comment Share on other sites More sharing options...
Medusa Posted March 18, 2019 Share Posted March 18, 2019 Maybe check login states when logging in? Or just text on screen. Quote Link to comment Share on other sites More sharing options...
redeems Posted March 18, 2019 Share Posted March 18, 2019 6 minutes ago, Medusaa said: Maybe check login states when logging in? Or just text on screen. The first one would be best. Create a state that handles logging in, and put a timeout on it. If it doesn’t complete the login action, you could assume 1 of two things. Credentials are incorrect, or the account is banned. Quote Link to comment Share on other sites More sharing options...
Chris Posted March 18, 2019 Share Posted March 18, 2019 use python and scrape the webpage of rs account settings 1 Quote Link to comment Share on other sites More sharing options...
Medusa Posted March 18, 2019 Share Posted March 18, 2019 (edited) 3 hours ago, Chris said: use python and scrape the webpage of rs account settings If he is trying to check on a "force-logout" if he is banned, it might be easier to just check a login state. Or am I just retarded? Edited March 18, 2019 by Medusaa Quote Link to comment Share on other sites More sharing options...
Naked Posted March 18, 2019 Share Posted March 18, 2019 public void onResponseCode(int code) throws InterruptedException { log("Code: " + code); switch(code){ case 4: log("BANNED"); sleep(3000); System.exit(0); } } 1 1 Quote Link to comment Share on other sites More sharing options...
osrunescapegold Posted March 18, 2019 Author Share Posted March 18, 2019 18 minutes ago, Naked said: public void onResponseCode(int code) throws InterruptedException { log("Code: " + code); switch(code){ case 4: log("BANNED"); sleep(3000); System.exit(0); } } Thanks:) 1 Quote Link to comment Share on other sites More sharing options...