flickyUh Posted March 29, 2020 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
Muffins Posted March 29, 2020 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); } }