Eve Online: Difference between revisions
Jump to navigation
Jump to search
imported>WATTO No edit summary |
imported>Ikskoks No edit summary |
||
| (16 intermediate revisions by 8 users not shown) | |||
| Line 16: | Line 16: | ||
<font color="blue"> ''' // for each file ''' </font> <br> | <font color="blue"> ''' // for each file ''' </font> <br> | ||
: uint32 {4} - File Length <br> | : uint32 {4} - File Length <br> | ||
: uint32 {4} - <font color="red"> '' Unknown '' </font> <br> | : uint32 {4} - <font color="red">''Unknown''</font> <br> | ||
: char {X} - Filename <br> | : char {X} - Filename <br> | ||
: byte {1} - null Filename Terminator <br> | : byte {1} - null Filename Terminator <br> | ||
| Line 22: | Line 22: | ||
<br> | <br> | ||
</b></tt> | </b></tt> | ||
The above specifications are used in previous versions. | |||
The new Format Specifications look like this: | |||
<tt><b> | |||
uint32 {4} - Number Of Files <br> | |||
<br> | |||
<font color="blue"> ''' // for each file ''' </font> <br> | |||
: uint32 {4} - File Length <br> | |||
: uint32 {4} - Length of Filename without null Terminator <br> | |||
: char {X} - Filename <br> | |||
: byte {1} - null Filename Terminator <br> | |||
<br> | |||
<font color="blue"> ''' // for each file ''' </font> <br> | |||
: byte {X} - File Data <br> | |||
</b> | |||
</tt> | |||
=== MultiEx BMS Script === | === MultiEx BMS Script === | ||
| Line 30: | Line 50: | ||
* [[Game Extractor|Game Extractor]]<br> | * [[Game Extractor|Game Extractor]]<br> | ||
[[Category:File Format]] | |||
Latest revision as of 12:39, 4 January 2021
Choose archive extension:
STUFF
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
uint32 {4} - Number Of Files
// for each file
- uint32 {4} - File Length
- uint32 {4} - Unknown
- char {X} - Filename
- byte {1} - null Filename Terminator
- byte {X} - File Data
The above specifications are used in previous versions. The new Format Specifications look like this:
uint32 {4} - Number Of Files
// for each file
- uint32 {4} - File Length
- uint32 {4} - Length of Filename without null Terminator
- char {X} - Filename
- byte {1} - null Filename Terminator
// for each file
- byte {X} - File Data
MultiEx BMS Script
Not written yet