|
Index
Index files are used to lookup data in other MUL files.
Data:
int lookup;
int length;
int extra;
To find data for a certain entry, you seek to (EntryID * 12), and read the data.
Then, in the actual MUL file (not the index file), you seek to (lookup), and read (length) number of bytes.
Some data relies on the extra field. |
Type definitions |
char |
Character 8-bit |
sbyte |
Signed 8-bit |
byte |
Unsigned 8-bit |
short |
Signed 16-bit |
ushort |
Unsigned 16-bit |
int |
Signed 32-bit |
uint |
Unsigned 32-bit |
long |
Signed 64-bit |
ulong |
Unsigned 64-bit |
bool |
Boolean 8-bit |
|