XP3
From Just Solve the File Format Problem
(Difference between revisions)
m (→Sample files: Renamed section to "Sample files", changed table layout to a more legible variant.) |
(→FormatInfo template: Populate parameters and add necessary references.) |
||
Line 2: | Line 2: | ||
|subcat=Archiving | |subcat=Archiving | ||
|extensions={{ext|xp3}} | |extensions={{ext|xp3}} | ||
+ | |compression=lossless<ref>[https://github.com/awaken1ng/krkr-xp3/blob/master/structs/file.py#L4 file.py (Line 4) - awaken1ng's fork of krkr-xp3 Python - GitHub]</ref> | ||
+ | |magic=58 50 33 0d 0a 20 0a 1a 8b 67 01 | ||
+ | |tpm=(optional) encryption<ref>[https://github.com/awaken1ng/krkr-xp3/blob/master/xp3reader.py#L33 xp3reader.py (Line 33) - awaken1ng's fork of krkr-xp3 Python - GitHub]</ref> | ||
}} | }} | ||
Latest revision as of 12:13, 15 August 2025
XP3 is an archiving format originally used in the KiriKiri Adventure Game System, a Japanese interactive fiction engine. It is also used in other visual novels.[3] Information about it in English might be hard to find.
Contents |
[edit] Identification
Files start with ASCII XP3
, followed by the Windows line break bytes 0x0D 0x0A
and the 6 bytes 0x20 0x0A 0x1A 0x8B 0x67 0x01
.
[edit] Sample files
See also: Files with XP3 - Discmaster
Filename | View | Download |
---|---|---|
bgimage.xp3 | View | Download |
bgm.xp3 | View | Download |
data.xp3 | View | Download |
data.xp3 | View | Download |
fgimage.xp3 | View | Download |
image.xp3 | View | Download |
others.xp3 | View | Download |
patch.xp3 | View | Download |
patch2.xp3 | View | Download |
patch3.xp3 | View | Download |
patch4.xp3 | View | Download |
rule.xp3 | View | Download |
scenario.xp3 | View | Download |
sound.xp3 | View | Download |
system.xp3 | View | Download |
bgm.xp3 | View | Download |
image.xp3 | View | Download |
patch.xp3 | View | Download |
scenario.xp3 | View | Download |
[edit] Links
- crskycode's fork of GARbro - could be used as one possible way to extract data.[4]
- Some related tools
- Script Extraction Thread - Fuwanovel Forums
- Data Extraction Thread - Internet Archive copy of Fuwanovel Forums thread
- Signature definition in Python