Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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






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