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