In Login.java Find:
Replace with:Code:int junk29 = p.stream.readUnsignedByte(); int encryption = p.stream.readUnsignedByte(); if (encryption != 10 && encryption != 64) { p.loginStage = -1; return; }
Now your server will allow both types of login, HD and non-HD.Code:int junk29 = p.stream.readUnsignedByte(); int encryption = junk29; if(!(encryption == 10 || encryption == 64)) { encryption = p.stream.readUnsignedByte(); } if (encryption != 10 && encryption != 64) { p.loginStage = -1; return; }



Reply With Quote![[TUT] Dual HD and non-HD login [TUT]](http://ragezone.com/hyper728.png)


