Jukebox Songs
TL;DR
Create data for songs in the
/config/songs/
folder.Copy and paste your
.ogg
files into the/songpack/songs
folder.Type
/mb generatepack
in-game to generate a Song Pack.Upload the .zip file from
/songpack/output
to mc-packs.net.Paste the URL in either
song-pack.yml
orserver.properties
.
What is a Song Data
"Song Data" refers to a data file inside the /config/songs/ folder. Each data file contains crucial information about a specific song, such as its name, cost, and icon.
What is a Song Pack
"Song Pack" refers to a resource pack that contains all the song files. Song Packs are sent to players upon clicking any Mystery Vault on the server. When a player declines the download, they won't be able to preview or listen to the songs.
How to create a Song Data
Go to the
/config/songs
folder.Copy and paste one of the already existing box files.
Rename the file to your desired name (which serves as its ID).
Modify the settings according to your preferences.
To verify that the song data was created, you can type /mb listsongs
How to create a Song Pack
Copy the .ogg files to the
/songpack/songs
folder.You can type
/mb verifypack
in-game to verify if your .ogg files have matching data files.
Generate a Song Pack using the
/mb gensongpack
command.Navigate to the
/songpack/output
folder.Upload the zip file to mc-packs.net.
Copy the download link.
Paste the URL in either
song-pack.yml
orserver.properties
.Reload or restart the server to apply the changes.
You can use a tool such as Audacity to convert .mp3
files to .ogg
format.
All songs in a Song Pack must have matching data files.
For example, if you want to create a Song Pack of 3 songs:
christmas.ogg
halloween.ogg
summer.ogg
Then you'd need to create 3 data files of the same name in /config/songs
:
christmas.yml
halloween.yml
summer.yml
You can type /mb verifypack
to verify your ogg and data files before generation.
Last updated