To contribute something maybe useful for Windows users:
Save this with an text-editor (Start > Run > "notepad" > OK, f.e.) to s3rcBatch.cmd
The file icon has now (depending on your Windows-Version) something like cogwheels.
If you copy this file f.e. in your Save-Folder TOGETHER with the s3rc.exe, and double-click on it, it decrapifies all .sims3pack, .package, .nhd, .sim, .dbc in every subdirectory (i.e. save-game) it can find.
There's an easier way to do it than the above, just save the file as s3rcBatch.cmd and change the type of files from .txt to all, it will automaticaly add the cog wheels. Also you can Batch about 90 files at once this way. My 2 cents. Going back to Lurk Moar. Code:
for /R %%i in (*.sims3pack) do s3rc.exe -fD "%%i"
for /R %%i in (*.package) do s3rc.exe -fD "%%i"
for /R %%i in (*.nhd) do s3rc.exe -fD "%%i"
for /R %%i in (*.sim) do s3rc.exe -fD "%%i"
for /R %%i in (*.dbc) do s3rc.exe -fD "%%i"
@pause
The file icon has now (depending on your Windows-Version) something like cogwheels.
If you copy this file f.e. in your Save-Folder TOGETHER with the s3rc.exe, and double-click on it, it decrapifies all .sims3pack, .package, .nhd, .sim, .dbc in every subdirectory (i.e. save-game) it can find.