-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readme: Instructions for extracting assets
- Loading branch information
1 parent
2ef2d2a
commit 76e157c
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# SlyCooper | ||
Sly Cooper games (PS2 & PS3) research & modding tools | ||
|
||
## Modding instructions (Sly 1 PS3) | ||
|
||
### Extracting assets | ||
1) Download the tools from the Releases panel on the right (or build them) | ||
1) Download the [psarc](http://www.mediafire.com/file/aegbgpkm3xfot80/psarc.zip/file) tool | ||
1) Go to your installed game's USRDIR directory (example: `rpcs3\dev_hdd0\game\NPUA80663\USRDIR`). | ||
We'll now refer to this as `$USRDIR`. | ||
1) Copy `psarc.exe` there (or use the full path to it in the next command) | ||
1) Run: | ||
```cmd | ||
mv Sly1.psarc Sly1.orig.psarc | ||
psarc extract --input=Sly1.orig.psarc --to=. | ||
``` | ||
1) Run: | ||
```cmd | ||
sly_unpacker.exe $USRDIR/Sly1/SLY.WAC | ||
``` | ||
After a while you should see an `extracted/` dir in there, with all the games' files. | ||
|
||
### Repackaging assets | ||
No detailed instructions yet, see `sly_bake.bat` and modify the paths in it accordingly. | ||
|
||
### Modifying / re-compressing levels | ||
No detailed instructions yet, see `sly_bake.bat` and modify the paths in it accordingly. |