i have attached the head texture of perry(atleast i think so
maybe someone can figure out how to make it viewable again
Code: Select all
void decryptData(byte *data, uint32 size) {
byte xorValues[3] = {0x42, 0x99, 0x80};
for (uint32 ofs = 0; ofs < size; ofs++) {
uint32 value = ofs % 3;
data[ofs] ^= xorValues[value] - 0x6E;
}
}

Please, can you upload the file again?john_doe wrote:Hi,
I've made a little tool which decrypts the file you sent. Please tell me if it works with other files, too.
You can download it from http://gamefileformats.the-underdogs.in ... tperry.zip