10tons PAK: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (Created page with "{{GRAFPageHeader}} == PAK == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> === Format Specif...") |
imported>Ikskoks (→Games) |
||
| (18 intermediate revisions by the same user not shown) | |||
| 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." | |||
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> | ||
| Line 20: | Line 41: | ||
=== Notes and Comments === | === Notes and Comments === | ||
* This file format is used in games made by '''10tons Ltd'''. | |||
=== Games === | === Games === | ||
List of games using this file format: | List of games using this file format: | ||
* Crimsonland 2014 | * Crimsonland 2014 | ||
* Neon Chrome | * DYSMANTLE | ||
* JYDGE | |||
* Neon Chrome / Neon Chrome Arena | |||
* Tesla vs Lovecraft | * Tesla vs Lovecraft | ||
* Time Recoil | * Time Recoil | ||
* Undead Horde | |||
=== Compatible Programs === | === Compatible Programs === | ||
* [https://github.com/ZimM-LostPolygon/10TonsPakProcessor 10TonsPakProcessor] | * [https://github.com/ZimM-LostPolygon/10TonsPakProcessor 10TonsPakProcessor] | ||
* [https://www.nexusmods.com/jydge/mods/3?tab=description 10tons PAK Unpacker (nx-pak-tool)] / [https://drive.google.com/file/d/1y0swfeeye91n6TClcsF53XiPDzfpM6KD/view?usp=share_link mirror1] | |||
<br/><br> | <br/><br> | ||
[[Category:Complete | [[Category:Complete Complete|10tons PAK]] | ||
[[Category:Platform PC|10tons PAK]] | [[Category:Platform PC|10tons PAK]] | ||
[[Category:CE None|10tons PAK]] | [[Category:CE None|10tons PAK]] | ||
Latest revision as of 19:09, 29 November 2022
Back to index | Edit this page
PAK
- Format Type : Archive
- Endian Order : Little Endian
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
- This file format is used in games made by 10tons Ltd.
Games
List of games using this file format:
- Crimsonland 2014
- DYSMANTLE
- JYDGE
- Neon Chrome / Neon Chrome Arena
- Tesla vs Lovecraft
- Time Recoil
- Undead Horde
Compatible Programs