Jump to content

Locating local .pack and .list files

From Battle Cats Game Modding Wiki
Revision as of 10:23, 4 September 2025 by Fieryhenry (talk | contribs) (Location of local .pack and .list files)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Modding the game requires modifying .pack and .list files inside the game package. The file location varies depending on platform and game version.

Android

Old Versions

Before TODO, the .pack and .list files were stored in the /res/raw/ directory inside the APK.

New Versions

After TODO, the .pack and .list files are stored in the /assets directory inside the APK.

iOS

File name and extensions

In modern versions, the filenames have the following pattern:

{Name}Local.pack
{Name}Local.list

However in older versions it was:

{name}local2.pack
{name}local1.list

And in even older versions it was:

{name}local2.jpg
{name}local1.list

Even though the .jpg files were not JPEGs.