flickyUh Posted March 29, 2020 Share Posted March 29, 2020 How can I check if an account gets banned? So i can mark it as such in my database and create a new one to replace it. Thanks Quote Link to comment Share on other sites More sharing options...
Muffins Posted March 29, 2020 Share Posted March 29, 2020 public void onResponseCode(int code) throws InterruptedException { log("Code: " + code); switch(code){ case 4: log("BANNED"); sleep(3000); System.exit(0); } } Quote Link to comment Share on other sites More sharing options...