Skip to main content

A mod loader for The Battle Cats

Project description

TBCModLoader

The Battle Cats Mod Loader (TBCML) is a python module for easily creating and managing mods for the mobile game The Battle Cats.

At the moment the tool is just a library and so you will need to have programming experience if you want to use it effectively.

The tool is very much still a work in progress, I decided to release it early because if I get a proper modding api working, this project will probably be obsolete.

Functionality

Note that most of these features a work in progress and may not work properly.

  • Downloading and extracting apks
  • Downloading server files and event data
  • Decryption and encryption of pack files
  • Parsing of various game data files
  • Modification of game data
  • Frida gadget hooking
  • Smali code injection
  • Java to smali code conversion
  • Patching of libnative-lib.so file
  • Modification of apk assets
  • Animation Viewer / Loader
  • BCU Pack Imports
  • Repacking and signing of modified apks

Note that the scripting functionality is very limited, especially in later game versions. Once I finish the game decompilation I will be able to make a much more powerful modding api.

Discord: https://discord.gg/DvmMgvn5ZB (The server is the same one which is used for save editing as I haven't made a modding specific one yet)

I've spent so much time working on this project because I've changed my mind on what this tool should do and how to structure it, but due to all of the re-writes, it really doesn't look like it. So I would really appricate it if you considered donating to my kofi:

ko-fi

wakatime

Getting Started

Installation

From pypi

pip install tbcml

From source

git clone https://github.com/fieryhenry/tbcml.git
cd tbcml
pip install -e .

Basic Usage

You can obviously do more advanced things with this tool, but this is just a basic example of how to use it.

I don't have time to create a bunch of examples and the documentation is not finished, so you'll probably have to read the source code to figure out how to do more advanced things.

Create script.py

from tbcml.core import (
    CountryCode,
    GameVersion,
    Apk,
    GamePacks,
    Mod,
    ModEdit,
    CatFormType,
    Cat,
    CatForm,
)

# Choose the country code
cc = CountryCode.EN

# Choose a game version
gv = GameVersion.from_string("12.3.0")

# Get the apk
apk = Apk(gv, cc)
apk.download_apk()
apk.extract()

# Download server files data
apk.download_server_files()
apk.copy_server_files()

# Get the game data
game_packs = GamePacks.from_apk(apk)

# Create a mod id, or use an existing one
mod_id = Mod.create_mod_id()

# Create a mod, not all information is required
mod = Mod(
    name="Test Mod",
    author="Test Author",
    description="Test Description",
    mod_id=mod_id,
    mod_version="1.0.0",
    password="test",
)

# Define cat information
cat_id = 0
cat_form_type = CatFormType.FIRST

# Create a form with the name "Test Cat"
form = CatForm(cat_id, cat_form_type, name="Test Cat")

# Create a cat
cat = Cat(cat_id)

# Set the form
cat.set_form(cat_form_type, form)

# Create a mod edit
mod_edit = ModEdit(["cats", cat_id], cat.to_dict())

# Add the mod edit to the mod
mod.add_mod_edit(mod_edit)

# Add the mod to the game packs
apk.load_mods([mod], game_packs)

# open the apk folder in the file explorer (optional)
apk.output_path.open()

Run the script

Windows

py script.py

Everything else

python3 script.py

Documentation (Not Finished)

https://tbcml-docs.readthedocs.io/en/latest/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tbcml-1.0.0.tar.gz (24.9 MB view hashes)

Uploaded Source

Built Distribution

tbcml-1.0.0-py3-none-any.whl (25.0 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page