Download.tsv
Appearance
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.