Baldurs Gate - Dark Alliance XBox: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Dinoguy1000
No edit summary
imported>PXR
No edit summary
Line 24: Line 24:
: char {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data <br>  
: char {X}&nbsp;&nbsp;&nbsp;&nbsp; - File Data <br>  
: byte {0-1023}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - <font color="red"> '' null Padding to a multiple of 1024? bytes '' </font> <br>  
: byte {0-1023}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - <font color="red"> '' null Padding to a multiple of 1024? bytes '' </font> <br>  
</b></tt>
</b></tt><br>


=== MultiEx BMS ===  
=== MultiEx BMS ===  


Not written yet<br><br>
<pre>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 ;</pre><br>


=== Supported Programs ===  
=== Supported Programs ===  


* [[Game Extractor|Game Extractor]]<br>
* [[Game Extractor|Game Extractor]]<br>
* [[MultiEx Commander|MultiEx Commander]]<br><br>


[[Category:No BMS]] [[Category:XBox]]
[[Category:BMS]] [[Category:XBox]]

Revision as of 13:48, 22 April 2006

Choose archive extension:

LMP


Format Specifications

uint32 {4}   - Number Of Files

// for each file

char {56}    - Filename (null terminated) (filled with junk)
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

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 ;


Supported Programs