diff --git a/README.md b/README.md index ccdfc33a..acb827c6 100644 --- a/README.md +++ b/README.md @@ -136,25 +136,25 @@ For example, the GameCube version of Lost HEAT SWORD is in two files named `q058 There are multiple PSO quest formats out there; newserv supports most of them. It can also decode any known format to standard .bin/.dat format. Specifically: -| Format | Extension | Supported online? | Decode action | -|---------------------------|-----------------------|-------------------|-------------------| -| Compressed | .bin and .dat | Yes | None (1) | -| Compressed Ep3 | .bin or .mnm | Yes (4) | None (1) | -| Uncompressed | .bind and .datd | Yes | compress-data (2) | -| Uncompressed Ep3 | .bind or .mnmd | Yes (4) | compress-data (2) | -| Unencrypted GCI | .bin.gci and .dat.gci | Yes | decode-gci | -| Encrypted GCI with key | .bin.gci and .dat.gci | Yes | decode-gci | -| Encrypted GCI without key | .bin.gci and .dat.gci | No | decode-gci (3) | -| Ep3 GCI | .bin.gci or .mnm.gci | Download only | decode-gci | -| Encrypted DLQ | .bin.dlq and .dat.dlq | Yes | decode-dlq | -| Ep3 DLQ | .bin.dlq or .mnm.dlq | Download only | decode-dlq | -| QST | .qst | Yes | decode-qst | +| Format | Extension | Supported online? | Decode action | +|---------------------------|-----------------------|-------------------|------------------| +| Compressed | .bin and .dat | Yes | None (1) | +| Compressed Ep3 | .bin or .mnm | Yes (4) | None (1) | +| Uncompressed | .bind and .datd | Yes | compress-prs (2) | +| Uncompressed Ep3 | .bind or .mnmd | Yes (4) | compress-prs (2) | +| Unencrypted GCI | .bin.gci and .dat.gci | Yes | decode-gci | +| Encrypted GCI with key | .bin.gci and .dat.gci | Yes | decode-gci | +| Encrypted GCI without key | .bin.gci and .dat.gci | No | decode-gci (3) | +| Ep3 GCI | .bin.gci or .mnm.gci | Download only | decode-gci | +| Encrypted DLQ | .bin.dlq and .dat.dlq | Yes | decode-dlq | +| Ep3 DLQ | .bin.dlq or .mnm.dlq | Download only | decode-dlq | +| QST | .qst | Yes | decode-qst | *Notes:* -1. *This is the default format. You can convert these to uncompressed format like this: `newserv decompress-prs FILENAME.bin FILENAME.bind`* -2. *Similar to (1), to compress an uncompressed quest file: `newserv compress-prs FILENAME.bind FILENAME.bin`* +1. *This is the default format. You can convert these to uncompressed format by running `newserv decompress-prs FILENAME.bin FILENAME.bind` (and similarly for .dat -> .datd)* +2. *Similar to (1), to compress an uncompressed quest file: `newserv compress-prs FILENAME.bind FILENAME.bin` (and likewise for .datd -> .dat)* 3. *If you know the encryption seed (serial number), pass it in as a hex string with the `--seed=` option. If you don't know the encryption seed, newserv will find it for you, which will likely take a long time.* -4. *Episode 3 online quests don't go in the system/quests directory; they instead go in the system/ep3/maps-free or system/ep3/maps-quest directory. If you want an Episode 3 quest to be available for both online play and for downloading, the file must exist in both system/quests and in one of the system/ep3 directories.* +4. *Episode 3 online quests don't go in the system/quests directory; they instead go in the system/ep3/maps-free or system/ep3/maps-quest directory. If you want an Episode 3 quest to be available for both online play and for downloading, the file must exist in both system/quests and in one of the map directories in system/ep3.* Episode 3 download quests consist only of a .bin file - there is no corresponding .dat file. Episode 3 download quest files may be named with the .mnm extension instead of .bin, since the format is the same as the standard map files (in system/ep3/). These files can be encoded in any of the formats described above, except .qst. There are no encrypted Episode 3 GCI formats because the game doesn't encrypt quests saved to the memory card, unlike Episodes 1&2.