• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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).

bocadecao - Priston Mobile Client Files Decrypted + Assets - RaGEZONE Forums


bocadecao - Priston Mobile Client Files Decrypted + Assets - RaGEZONE Forums


Download here



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 :*:
 
Back
Top