I kid you not, this is exactly how the assembly looks.Code:int[] xorTable = {shit}; public static void Encrypt(Packet p) { int Page1 = p.getLength() % 10; int Page2 = 2; for (int i = 0; i < p.getLength(); i++) { p.getData()[i] ^= xorTable[(Page2 * 40 + i % 40) % xorTable.length]; int pos = (Page1 * 40 + i % xorTable.length); //DO ABSOLUTELY NOTHING BECAUSE WE'RE FUCKING RETARDED. } }
This is how it should look if the server devs weren't bad.Code:int[] xorTable = {shit}; public static void Encrypt(Packet p) { for (int i = 0; i < p.getLength(); i++) { p.getData()[i] ^= xorTable[i % xorTable.length]; } }
For xor table : http://forum.ragezone.com/f625/relea...-table-698537/



Reply With Quote![[Release] Drift City Encryption](http://ragezone.com/hyper728.png)


