Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
可以解码 WiiFit 保存的数据。
一旦 WiiFit 保存数据存储到 SD 卡上,它将被命名为 private\wii\title\RFNP\data.bin(对于 pal)或 private\wii\title\RFNN\data.bin(对于 NTSC)
这是标准化 Wii 使用的格式,在 http://wiibrew.org/wiki/Savegame_Files 中进行了描述
所有游戏都 已使用 http://hackmii.com/2008 中的密钥解密了标头和数据区域/04/keys-keys-keys/ 你会发现data.bin包含以下文件:
RPFitCap.dat RPHealth.dat RPWiiFit.dat
这些文件未加密,但我没有分析它们的内容,只是为了能够为我自己的 Mii 提取体重和体重数据。
我有一个非常肮脏的 vb6 类,它生成一个包含日期和权重的 CSV 文件,但它远离任何类型的发布。
这是我提取的一些数据:
15.11.2008 13:18:00;92 16.11.2008 15:30:00;91,1 17.11.2008 19:02:00;91,3 18.11.2008 08:23:00;90,8 19.11.2008 07:20:00;90,5 20.11.2008 09:34:00;90,5 21.11.2008 09:32:00;91,1 22.11.2008 09:11:00;91,3 23.11.2008 10:25:00;91,6 24.11.2008 10:36:00;91,2 25.11.2008 10:37:00;91,4 26.11.2008 13:40:00;90,8 27.11.2008 10:45:00;91,2 28.11.2008 11:32:00;91,4 29.11.2008 13:09:00;91 30.11.2008 13:18:00;90 01.12.2008 12:38:00;90,1 02.12.2008 13:16:00;91,2 03.12.2008 10:34:00;91,2 04.12.2008 12:06:00;91 05.12.2008 13:05:00;91,2 06.12.2008 16:28:00;90,3 07.12.2008 14:03:00;90,9 08.12.2008 12:38:00;91,3 09.12.2008 14:18:00;90,4 10.12.2008 13:43:00;90,5 11.12.2008 13:36:00;90,5 12.12.2008 14:15:00;90,3 13.12.2008 14:17:00;89,9 14.12.2008 10:42:00;90
./Al
It is possible to decode the WiiFit save data.
Once the WiiFit savedata is stored to a SD card it will be named private\wii\title\RFNP\data.bin (for pal) or private\wii\title\RFNN\data.bin (for NTSC)
This is a standardized Wii format that all games use and it is described at http://wiibrew.org/wiki/Savegame_Files
Once you have decrypted the header and data area with he keys from http://hackmii.com/2008/04/keys-keys-keys/ you will find that data.bin contain the files:
RPFitCap.dat RPHealth.dat RPWiiFit.dat These files are unencrypted, but I have not analyzed their content more then just to be able to extract weight and bmi data for my own Mii. I have a really dirty vb6 class that produces a CSV file with dates and weight but its faaaaaar away from any kind of release. Heres some of my extracted data: 15.11.2008 13:18:00;92 16.11.2008 15:30:00;91,1 17.11.2008 19:02:00;91,3 18.11.2008 08:23:00;90,8 19.11.2008 07:20:00;90,5 20.11.2008 09:34:00;90,5 21.11.2008 09:32:00;91,1 22.11.2008 09:11:00;91,3 23.11.2008 10:25:00;91,6 24.11.2008 10:36:00;91,2 25.11.2008 10:37:00;91,4 26.11.2008 13:40:00;90,8 27.11.2008 10:45:00;91,2 28.11.2008 11:32:00;91,4 29.11.2008 13:09:00;91 30.11.2008 13:18:00;90 01.12.2008 12:38:00;90,1 02.12.2008 13:16:00;91,2 03.12.2008 10:34:00;91,2 04.12.2008 12:06:00;91 05.12.2008 13:05:00;91,2 06.12.2008 16:28:00;90,3 07.12.2008 14:03:00;90,9 08.12.2008 12:38:00;91,3 09.12.2008 14:18:00;90,4 10.12.2008 13:43:00;90,5 11.12.2008 13:36:00;90,5 12.12.2008 14:15:00;90,3 13.12.2008 14:17:00;89,9 14.12.2008 10:42:00;90 ./Al
These files are unencrypted, but I have not analyzed their content more then just to be able to extract weight and bmi data for my own Mii.
I have a really dirty vb6 class that produces a CSV file with dates and weight but its faaaaaar away from any kind of release.
Heres some of my extracted data:
我能够使用此信息创建一个表格,其中存储数据在 Wii Fit 保存游戏文件中的位置。
以下博客文章中有更多详细信息: http://jansenprice.com/blog?id=9-Extracting-Data-from-Wii-Fit-Plus-Savegame-Files
File FitPlus0.dat ----------------- Byte Offset | Length | Description ----------------------------------- 0x0 | 8 | RPHE0000 (header) 0x8 | 22 | Name of Mii 0x1E | 1 | Unknown 0x1F | 1 | Height (in cm) 0x20 | 4 | Date of birth (stored in BCD: e.g. 1980 0228) 0x24 | | Unknown 0x95 | | Dates with data (rowlen=10) 0x35CF | | Start of some other section (unknown) 0x38A1 | | Body Test measurement data section (rowlen=21) +0 | 4 | Date (in bitfield format) +4 | 2 | Weight (in kg * 10) +6 | 2 | BMI (* 100) +8 | 2 | Balance percent (* 10) +10 | 2 | simple value 4 ?? +12 | 1 | extended 1 ?? +13 | 1 | extended 2 ?? +14 | 1 | extended 3 ?? +15 | 1 | extended 4 ?? +16 | 2 | extended 5 ?? +18 | 1 | extended 6 ?? +19 | 1 | extended 7 ?? 0x9288 | 1 | Last byte of profile
I was able to use this info to create a table of where the data is stored in the Wii Fit savegame files.
There is more detail in the following blog post: http://jansenprice.com/blog?id=9-Extracting-Data-from-Wii-Fit-Plus-Savegame-Files
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
可以解码 WiiFit 保存的数据。
一旦 WiiFit 保存数据存储到 SD 卡上,它将被命名为 private\wii\title\RFNP\data.bin(对于 pal)或 private\wii\title\RFNN\data.bin(对于 NTSC)
这是标准化 Wii 使用的格式,在 http://wiibrew.org/wiki/Savegame_Files 中进行了描述
所有游戏都 已使用 http://hackmii.com/2008 中的密钥解密了标头和数据区域/04/keys-keys-keys/ 你会发现data.bin包含以下文件:
这些文件未加密,但我没有分析它们的内容,只是为了能够为我自己的 Mii 提取体重和体重数据。
我有一个非常肮脏的 vb6 类,它生成一个包含日期和权重的 CSV 文件,但它远离任何类型的发布。
这是我提取的一些数据:
./Al
It is possible to decode the WiiFit save data.
Once the WiiFit savedata is stored to a SD card it will be named private\wii\title\RFNP\data.bin (for pal) or private\wii\title\RFNN\data.bin (for NTSC)
This is a standardized Wii format that all games use and it is described at http://wiibrew.org/wiki/Savegame_Files
Once you have decrypted the header and data area with he keys from http://hackmii.com/2008/04/keys-keys-keys/ you will find that data.bin contain the files:
我能够使用此信息创建一个表格,其中存储数据在 Wii Fit 保存游戏文件中的位置。
以下博客文章中有更多详细信息: http://jansenprice.com/blog?id=9-Extracting-Data-from-Wii-Fit-Plus-Savegame-Files
I was able to use this info to create a table of where the data is stored in the Wii Fit savegame files.
There is more detail in the following blog post: http://jansenprice.com/blog?id=9-Extracting-Data-from-Wii-Fit-Plus-Savegame-Files