10tons PAK: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 10: Line 10:
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<pre>
<pre>
// Tesla vs Lovecraft (PC Steam)
// PAK file format
// header
8 bytes (char) - signature  // "PAK.V11."
8 bytes (char) - signature  // "PAK.V11."
4 bytes (uint32) - file list offset
4 bytes (uint32) - file list offset
// data
num_of_files *
{
  x bytes - file data
}
// file list
4 bytes (uint32) - number of files
num_of_files *
{
  x bytes (char) - filename
  4 bytes (uint32) - file offset
  4 bytes (uint32) - file size
  8 bytes - unknown
}
</pre>
</pre>
</div>
</div>

Revision as of 16:16, 4 July 2021

Back to index | Edit this page

PAK


Format Specifications

// Tesla vs Lovecraft (PC Steam)
// PAK file format

// header
8 bytes (char) - signature  // "PAK.V11."
4 bytes (uint32) - file list offset

// data
num_of_files *
{
   x bytes - file data
}

// file list
4 bytes (uint32) - number of files
num_of_files *
{
   x bytes (char) - filename
   4 bytes (uint32) - file offset
   4 bytes (uint32) - file size
   8 bytes - unknown
}

MultiEx BMS Script

Not written yet.

Notes and Comments

None.

Games

List of games using this file format:

  • Crimsonland 2014
  • Neon Chrome
  • Tesla vs Lovecraft
  • Time Recoil


Compatible Programs