-
Notifications
You must be signed in to change notification settings - Fork 2
Modding 101
Eren edited this page Apr 13, 2025
·
3 revisions
Open your %AppData%/beatblock/Mods/ folder and create a new folder inside for your mod.
Inside the mod folder create a file named mod.json. This file will hold data about your mod such as the name, description, author and version.
This step is required if you want to upload your mods to the modding discord server.
You can copy the template below:
{
"id": "my-awesome-mod",
"name": "My Awesome Mod",
"author": "My Name",
"description": "Hello!!! This is my mod :D",
"version": "1.0.0",
"enabled": true
}The id must match the mod folder's name.
If you want to add an icon to your mod simply add an image named icon.png inside your mod folder.
The image must be 73x33 and has no color limitations.
Your mod folder should look like this:

After that open your game and verify that your mod is loaded:

Click to join the Beatblock Modding Discord Server
For users:
For Mod Developers: