-
Notifications
You must be signed in to change notification settings - Fork 9
FES Screen
Robert Jordan edited this page Mar 17, 2019
·
5 revisions
File Structure fully deciphered!
This format is really easy to read.
Data Type | Value | Description |
---|---|---|
char[4] |
"FES" | File Signature |
uint32 |
CompressedSize | Compressed size of ScriptText |
uint32 |
DecompressedSize | Decompressed size of ScriptText |
uint32 |
Reserved | Always zero(?) |
byte[CompressedSize] | ScriptText | Zlib-compressed screen script text |
ScriptText is just a raw Shift JIS (codepage 932) string containing the entire condensed FES script. FES scripts don't have any special file format other than their header and using Zlib compression.