March 18, 20196 yr 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.
March 18, 20196 yr 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, 20196 yr by Medusaa
March 18, 20196 yr public void onResponseCode(int code) throws InterruptedException { log("Code: " + code); switch(code){ case 4: log("BANNED"); sleep(3000); System.exit(0); } }
March 18, 20196 yr Author 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:)
Create an account or sign in to comment