osrunescapegold Posted March 18, 2019 Posted March 18, 2019 How would I go to check if the account is banned or not?
Medusa Posted March 18, 2019 Posted March 18, 2019 Maybe check login states when logging in? Or just text on screen.
redeems Posted March 18, 2019 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.
Chris Posted March 18, 2019 Posted March 18, 2019 use python and scrape the webpage of rs account settings 1
Medusa Posted March 18, 2019 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
Naked Posted March 18, 2019 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
osrunescapegold Posted March 18, 2019 Author 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