Jump to content

Sound setting.tsv

From Battle Cats Game Modding Wiki

Sound_setting.tsv is a file inside of DataLocal which contains metadata about the music and sound effects in the game. See Audio

Structure

The file is a TSV file where each row is an audio file item, the first row being a set of headers. The 3 columns are as so:

  1. BGM flag - whether the audio file is background music or not.
  2. Loop flag - whether the audio loops or not
  3. Priority - the priority of the sound effect. -1 for BGM, larger number = higher priority?

Examples

1	1	-1
0	0	100

This means that the first audio file is background music which loops.

And the second audio file is a sound effect which does not loop and has a priority of 100.