T1 - <last packet received> , <packet length> , <previous packet> , <third packet>
last packet = 123
last packet size = 0
prev packet = 126
pack previous to that = 126
IIRC 123 is the crash frame packet thingy, go to playerassistant.java (server sided) and replace
Code:
public void sendCrashFrame() { // used for crashing cheat clients
synchronized(c) {
if(c.getOutStream() != null && c != null) {
c.getOutStream().createFrame();
c.flushOutStream();
}
}
}
with
Code:
public void sendCrashFrame() { // used for crashing cheat clients
/*synchronized(c) {
if(c.getOutStream() != null && c != null) {
c.getOutStream().createFrame();
c.flushOutStream();
}
}*/
}