Baldurs Gate - Dark Alliance XBox: Difference between revisions
Jump to navigation
Jump to search
imported>Dinoguy1000 (cleanup) |
imported>Dinoguy1000 (cleanup) |
(No difference)
| |
Revision as of 03:48, 22 October 2011
Back to index | Edit this page
LMP
- Format type: Archive
- Endianness: Little-endian
Format Specifications
- uint32 {4} - Number Of Files
// for each file
- char {56} - Filename (filled with junk and null terminated)
- uint32 {4} - File Offset
- uint32 {4} - File Length
- byte {0-255} - null Padding to a multiple of 256 bytes
// for each file
- char {X} - File Data
- byte {0-1023} - null Padding to a multiple of 1024? bytes
MultiEx BMS
- Author: PXR
- Version: 1.0
<syntaxhighlight lang="mexscript"> ImpType Standard ; Get FILENUM Long 0 ; For F = 1 To FILENUM ; GetDString FNAME 56 0 ; SavePos FOFFSETX 0 ; Get FOFFSET Long 0 ; SavePos FSIZEX 0 ; Get FSIZE Long 0 ; Log FNAME FOFFSET FSIZE FOFFSETX FSIZEX ; Next F ; </syntaxhighlight>