UndercoverPervert
Content Creator
- Joined
- Aug 9, 2016
There's a work in progress tool can revert the version number for you, but it's probably going to be a while before I release it.I was using 3D Object Converter, but with pew_10_XX_0033 is not working, neither pew_10_XX_0016
You can hex edit to achieve the same result, every (relevant) pac file starts like this, where those first 4 bytes are the ID, which is "PAR ", and the 2 bytes after that are the version.
Code:
50 41 52 20 XX XX
To fix the compatibility issue of newer version pac files (which currently do not seem to have any structure differences) you can revert the version to 515 which is compatible with 3d converter and pactool by changing the two bytes for the version to 03 02 like so:
Code:
50 41 52 20 03 02