Download.tsv: Difference between revisions
Appearance
Fieryhenry (talk | contribs) Created page with "{{Game file | File name = download_X.tsv | Pack name = the game APK | Short description = specifies which files to download from the server when the game first opens. | Structure = The file is a TSV file. The first row specifies the metadata of the zip file downloaded from the game server. The columns are as follows: # Byte order mark - always \ufeff # Zip file size in bytes # Zip MD5 hash After this each row specifies a file that the zip contains..." |
Fieryhenry (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
download_x.tsv is a file inside of the game package which specifies which files to download from the [[server files|server]] when the game first opens. | |||
== Structure == | |||
The file is a [[TSV file]]. | |||
The first row specifies the metadata of the zip file downloaded from the game server. The columns are as follows: | The first row specifies the metadata of the zip file downloaded from the game server. The columns are as follows: | ||
| Line 17: | Line 16: | ||
# MD5 File hash of uncompressed data | # MD5 File hash of uncompressed data | ||
== Examples == | |||
<syntaxhighlight lang="text" line> | |||
33820814 6147cdabcc9e386bbd66a478dfec0016 | 33820814 6147cdabcc9e386bbd66a478dfec0016 | ||
ImageServer.list 21008 851a09cd2860c16f384ef38abcd49a5e | ImageServer.list 21008 851a09cd2860c16f384ef38abcd49a5e | ||
| Line 34: | Line 34: | ||
# <code>MapServer.list</code> with a file size of <code>1040</code> bytes and an MD5 hash of <code>c47653c0e091989103722c5d3c3bda20</code> | # <code>MapServer.list</code> with a file size of <code>1040</code> bytes and an MD5 hash of <code>c47653c0e091989103722c5d3c3bda20</code> | ||
# <code>MapServer.pack</code> with a file size of <code>8957824</code> bytes and an MD5 hash of <code>41e6193d426146b5ed6db677b67b3389</code> | # <code>MapServer.pack</code> with a file size of <code>8957824</code> bytes and an MD5 hash of <code>41e6193d426146b5ed6db677b67b3389</code> | ||
== Notes == | == Notes == | ||
If you want to modify the [[server files]] directly you must also change these files to the new values. | If you want to modify the [[server files]] directly you must also change these files to the new values. | ||
[[Category:Package files]] | |||
Latest revision as of 09:36, 22 October 2025
download_x.tsv is a file inside of the game package which specifies which files to download from the server when the game first opens.
Structure
The file is a TSV file.
The first row specifies the metadata of the zip file downloaded from the game server. The columns are as follows:
- Byte order mark - always \ufeff
- Zip file size in bytes
- Zip MD5 hash
After this each row specifies a file that the zip contains, the columns are as follows:
- Filename
- Uncompressed file size in bytes
- MD5 File hash of uncompressed data
Examples
33820814 6147cdabcc9e386bbd66a478dfec0016
ImageServer.list 21008 851a09cd2860c16f384ef38abcd49a5e
ImageServer.pack 27605456 5992c4d9e662fbdecdd35fc5dbc9d8d8
MapServer.list 1040 c47653c0e091989103722c5d3c3bda20
MapServer.pack 8957824 41e6193d426146b5ed6db677b67b3389
This means the zip has a file size of 33820814 bytes and a MD5 hash of 6147cdabcc9e386bbd66a478dfec0016.
The zip file contains 4 files
ImageServer.listwith a file size of21008bytes and an MD5 hash of851a09cd2860c16f384ef38abcd49a5eImageServer.packwith a file size of27605456bytes an an MD5 hash of5992c4d9e662fbdecdd35fc5dbc9d8d8MapServer.listwith a file size of1040bytes and an MD5 hash ofc47653c0e091989103722c5d3c3bda20MapServer.packwith a file size of8957824bytes and an MD5 hash of41e6193d426146b5ed6db677b67b3389
Notes
If you want to modify the server files directly you must also change these files to the new values.