Priston Mobile Client Files Decrypted + Assets

Junior Spellweaver
Joined
May 30, 2009
Messages
190
Reaction score
61
Include assets decrypted and unpackaged from different client versions. If you want to open the models, you should use Urho3D (game engine used by them).









Decrypt Algorithm

Code:
static const std::vector<int> PTM_DECRYPTKEYS = { 0xDE, 0xAD, 0xFA, 0xCE };

for( unsigned int i = 0; i < iFileSize; i++ )
	pBuffer[i] = pBuffer[i] ^ vKeys[i % vKeys.size()];



Urho Package Extractor

https://github.com/morsm/UrhoPackageExtract
 
Initiate Mage
Joined
May 6, 2020
Messages
2
Reaction score
0
can you explain how to open these 3d models? I didn't understand how to use urho3d, sorry if it's asking too much, I tried :*: