TODO: Write a description
TODO: Write a description
TODO: Write a description
Compresses files to the LZSS-derived format that the official game expects for Sly level files. TODO: Fix compressor causing larger files compared to original.
- Download the tools from the Releases panel on the right (or build them)
- Download the psarc tool (psarc wiki)
- Go to your installed game's USRDIR directory (example:
C:/rpcs3/dev_hdd0/game/NPUA80663/USRDIR). We'll now refer to this as$USRDIR, replace it where appropriate. - Copy
psarc.exethere (or use the full path to it in the next command) psarc extract --input=Sly1.psarc --to=.
TODO: Finish this section
- Replace Sly1.psarc with dummy Sly1.psarc (as an example with Finnish dub mod, there's kok.txt only inside the Sly1.psarc)
1.1) Create a empty file (example dummy.txt)
1.2) Create a file list txt and add your dummy file to the list
1.3) Run this commandpsarc.exe create --inputfile=filelist.txt --output=Sly1.psarc - Game proceeds to skip the file and makes your life easier as you don't need to repack psarc everytime (this is slow process)
- So now you can place SLY.WAC and SLY.WAL into Sly1 folder (inside USRDIR\Sly1)
- You can delete SLY_F.WAC and SLY_S.WAC files (they are unused by the game)
- After unpacking SLY.WAC, you can run this powershell command
Get-ChildItem | Where-Object { $_.Name.EndsWith('_fW') -or $_.Name.EndsWith('_sW') } | Remove-Iteminside the extracted folder to remove unused files and save space