Blobby Volley PAK: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| (16 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== PAK == | == PAK == | ||
* ''' Game ''': Blobby Volley | * ''' Game ''': Blobby Volley <br> | ||
* ''' Format Type ''': Archive <br> | * ''' Format Type ''': Archive <br> | ||
* ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> | * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> | ||
| Line 9: | Line 9: | ||
<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> | ||
// Blobby Volley | // Blobby Volley | ||
// PAK file format | // PAK file format | ||
// Note: Files are | // Note: Files are encrypted with custom algorithm | ||
num_of_files * | num_of_files * | ||
| Line 27: | Line 27: | ||
=== Notes and Comments === | === Notes and Comments === | ||
* It occurs only in original Blobby Volley game written in Delphi. <br>After version 1.8 all files are kept in standard ZIP archives. | |||
=== Encryption Algorithm === | |||
Encryption method has been '''partially''' reverse engineered.<br> | |||
[https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/Blobby%20Volley/Blobby_Volley_PAK_Tool.py Here] you can see implementation of algorithm that is able to decode some parts of the data.<br><br> | |||
=== Compatible Programs === | === Compatible Programs === | ||
* [https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/Blobby%20Volley/Blobby_Volley_PAK_Tool.py Blobby_Volley_PAK_Tool.py] (unfinished tool) | |||
<br/><br> | <br/><br> | ||
| Line 42: | Line 48: | ||
[[Category:BMS_None | BMS: None]] | [[Category:BMS_None | BMS: None]] | ||
[[Category:File Format]] | [[Category:File Format]] | ||
[[Category:Custom | [[Category:Custom encryption]] | ||
Latest revision as of 15:35, 11 April 2021
PAK
- Game : Blobby Volley
- Format Type : Archive
- Endian Order : Little Endian
Format Specifications
// Blobby Volley
// PAK file format
// Note: Files are encrypted with custom algorithm
num_of_files *
{
x bytes - file data
}
MultiEx BMS Script
Not written yet.
Notes and Comments
- It occurs only in original Blobby Volley game written in Delphi.
After version 1.8 all files are kept in standard ZIP archives.
Encryption Algorithm
Encryption method has been partially reverse engineered.
Here you can see implementation of algorithm that is able to decode some parts of the data.
Compatible Programs
- Blobby_Volley_PAK_Tool.py (unfinished tool)