Adding sounds
Note: for now only folder structure
Step 1
create a new folder
ItemsAdder/contents/my_sounds/resourcepack/my_sounds/sounds/
(or use yours if you already have one)put your .ogg file in there. You can also create more folders inside
sounds
to organize your sounds. For example "effects", "music" etc.
For example I have a file named song_1.ogg and I put it into a new music
folder.
So now I have contents/my_sounds/resourcepack/my_sounds/sounds/music/song_1.ogg
Step 2
open the folder
ItemsAdder/contents/my_sounds/resourcepack/my_sounds/
create a new file named
sounds.json
(or open it if you already created it)this file is a
.json
file so you MUST write it correctly or it won't work. If you need info about Json files please search online.
To add your sound into the file you just have to do this:
Now I explain each part of the code I wrote.
This is the sound name. You will use it in every part of the plugin and also in Minecraft vanilla /playsound command.
This is the list of sound files Minecraft will play when you call the sound name. Minecraft will play one of these sounds randomly (only if you set more than one sound).
Keep in mind that you have to change my_sounds
to your own namespace name if it's different!
For example if you want to have random sounds for the same sound name you just have to create multiple .ogg
files and put them like this:
How can I add multiple sounds in the sounds.json
file?
sounds.json
file?It's easy, the next time you want to add a sound you just have to add a comma at the end, like this. (I'm referring to line 6 comma)
If you want to be sure not to make mistakes use this website to check if your Json file is good or has errors: https://jsonformatter.curiousconcept.com/
Last updated