Jump to content

Download.tsv

From Battle Cats Game Modding Wiki
Revision as of 09:36, 22 October 2025 by Fieryhenry (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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:

  1. Byte order mark - always \ufeff
  2. Zip file size in bytes
  3. Zip MD5 hash

After this each row specifies a file that the zip contains, the columns are as follows:

  1. Filename
  2. Uncompressed file size in bytes
  3. 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

  1. ImageServer.list with a file size of 21008 bytes and an MD5 hash of 851a09cd2860c16f384ef38abcd49a5e
  2. ImageServer.pack with a file size of 27605456 bytes an an MD5 hash of 5992c4d9e662fbdecdd35fc5dbc9d8d8
  3. MapServer.list with a file size of 1040 bytes and an MD5 hash of c47653c0e091989103722c5d3c3bda20
  4. MapServer.pack with a file size of 8957824 bytes and an MD5 hash of 41e6193d426146b5ed6db677b67b3389


Notes

If you want to modify the server files directly you must also change these files to the new values.