How can I know the content of the file named such as 'account_UID_0_pdr.bin'?
Added by tao1445 over 4 years ago
Hello,
When I use ryzom_open_client connected the servers which built by myself(from CMAKE in Windows XP),I could create account and character as usual.
After the accout quit game,some information saved into the file named such as 'account_UID_0_pdr.bin',which path is:code/ryzom/server/save_shard/characters/UID/.
But this file looks like a binary file,I can't read the content of it.
How can I know what information had been recorded into this file?
And which source code write the file?
Thanks for any advice.
There is my file.
account_1003_0_pdr.bin (13 kB)
Replies (2)
RE: How can I know the content of the file named such as 'account_UID_0_pdr.bin'? - Added by vl over 4 years ago
pdr.bin contains the information related to the player like his name, xp and so on...
In the code\ryzom\tools\pdr_util you jave the pdr_util.
This little tool will convert the pdr.bin into xml, txt or bin.
For example, to convert pdr.bin into xml:
pdr_util -x account_1003_0_pdr.bin -s/path/to/sheet_id.bin
Then you'll have in ./ the file account_1003_0_pdr.xml
You can edit the xml and then reconvert it in pdr.bin
pdr_util -b account_1003_0_pdr.xml -s/path/to/sheet_id.bin
RE: How can I know the content of the file named such as 'account_UID_0_pdr.bin'? - Added by tao1445 over 4 years ago
ok,thanks a lot.I've converted the pdr.bin file into xml.
(1-2/2)