WWE Day of Reckoning TEX: Difference between revisions
Jump to navigation
Jump to search
(New format) |
imported>Ikskoks m (Ikskoks moved page WWE Day of Reckoning to WWE Day of Reckoning TEX) |
||
| (12 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
[[GRAFs| | * [[GRAFs|Return to the list of games]] | ||
Choose archive extension: | Choose archive extension: | ||
== TEX == | == TEX == | ||
| Line 11: | Line 10: | ||
=== Format Specifications === | === Format Specifications === | ||
< | <tt><b> | ||
// | uint32 {4} - Number Of Files <br> | ||
uint32 {4} - <font color="red"> '' Color Depth? <font color="purple">(256)</font> '' </font> <br> | |||
uint32 {4} - null <br> | |||
uint32 {4} - <font color="red"> '' Padding Size? '' </font> <br> | |||
<br> | |||
<font color="blue"> ''' // for each file ''' </font> <br> | |||
: char {16} - Filename <font color="purple">(null, filled with junk)</font> <br> | |||
: uint32 {4} - File Extension <br> | |||
: uint32 {4} - File Size <br> | |||
: uint32 {4} - File Offset <br> | |||
: uint32 {4} - null <br> | |||
<br> | |||
byte {16} - null Padding <br> | |||
byte {X} - File Data <br> | |||
</b></tt> | |||
=== MultiEx BMS === | |||
<pre> | |||
ImpType Standard ; | |||
Get FNum Long 0 ; | |||
SavePos S 0 ; | |||
Math S += 12 ; | |||
GoTo S 0 ; | |||
For T = 1 To FNum ; | |||
GetDString FN 16 0 ; | |||
Get D Long 0 ; | |||
SavePos FSO 0 ; | |||
Get FS Long 0 ; | |||
SavePos FOO 0 ; | |||
Get FO Long 0 ; | |||
Get D Long 0 ; | |||
Log FN FO FS FOO FSO ; | |||
Next T ; | |||
</pre> | </pre> | ||
=== Supported Programs === | |||
* [[Game Extractor|Game Extractor]]<br> | |||
* [[MultiEx Commander]] | |||
[[Category:File Format]] | |||
Latest revision as of 17:12, 25 January 2021
Choose archive extension:
TEX
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
uint32 {4} - Number Of Files
uint32 {4} - Color Depth? (256)
uint32 {4} - null
uint32 {4} - Padding Size?
// for each file
- char {16} - Filename (null, filled with junk)
- uint32 {4} - File Extension
- uint32 {4} - File Size
- uint32 {4} - File Offset
- uint32 {4} - null
byte {16} - null Padding
byte {X} - File Data
MultiEx BMS
ImpType Standard ; Get FNum Long 0 ; SavePos S 0 ; Math S += 12 ; GoTo S 0 ; For T = 1 To FNum ; GetDString FN 16 0 ; Get D Long 0 ; SavePos FSO 0 ; Get FS Long 0 ; SavePos FOO 0 ; Get FO Long 0 ; Get D Long 0 ; Log FN FO FS FOO FSO ; Next T ;