MaybeLaterx

6 Mar 2016

Redstone , Sound

How to Make Seamlessly Looping Zone Music in Minecraft 1.9+ [Part 2]

← Read Part 1

Now that we’re a bit more familiar with command blocks, and now that we have a better understanding of how our system is going to know when it’s time to replay a song for each player, let’s lay out our final command block set up. We need one repeating block, facing into a chain block, facing into another chain block. (The ‘Chain’ setting replaces ‘Impulse’.)

Command blocks

Make sure all of the command blocks are set to ‘Always active’ instead of ‘Needs redstone’ and that they’re all facing the same direction in a line. Now we can begin putting in our finalised commands! In the first block, we want to set the score of anybody who can’t hear the song to 640 (or whatever song length you’re using). This could be somebody entering the zone for the first time, or somebody whose song just finished and who needs to hear it again. This will effectively be anybody whose song1 score is 0 (or less). Here’s the command for that:

/scoreboard players set @a[score_song1=0] song1 640

But that’s not all! We want our entity selector to target players in a particular location as well. Choose a coordinate in your world along with a radius. (If you’re not sure how, press F3 to see more details about the world.) I will choose 0,100,0 and a radius of 20. Anyone within 20 blocks of 0,100,0 will have their song1 score set to 640 – as long as their song score is 0.

/scoreboard players set @a[x=0,y=100,z=0,r=20,score_song1=0] song1 640

Excellent! Let’s put it in the repeating command block. One command down! Now for the third command block. This will be our decreasing score command.

/scoreboard players remove @a song1 1

If we want to make the sidebar look neater and very slightly increase performance, we can make the score decrease down to 0 but not below 0.

/scoreboard players remove @a[score_song1_min=1] song1 1

Simple! Now, finally, let’s move on to our middle command block. What this will do is play the song to anybody whose score is the exact length of the song. I’ve called the song that I’m using ‘mysong’ in the JSON file. (Learn more about the playsound command and the sounds.json here.)

/playsound mysong master @a[score_song1_min=640] 0 100 0 2

The final four numbers in this command should be replaced with your x, y, z and volume values. Note that volume does not correlate perfectly to radius, so play around with the volume until it sounds right to you. I prefer making the volume area slightly larger than the radius so that when the song plays it begins at a good audible volume, rather than slowly fading in from nothing. (But that’s just my preference!) Now that the commands are all done, we can stop displaying the scoreboard on the right using the following command:

/scoreboard objectives setdisplay sidebar

And that’s it – you’re good to go! If you want to set up multiple commands for multiple songs, repeat this process with a new scoreboard (such as song2 or lobbymusic). Enjoy!

If you have any questions about this tutorial, feel free to get in touch. If you’re looking for an example of this music system in action, download Workshop Wars: Christmas Edition and walk around the three sections of the lobby to hear how songs fade and mix from one zone to another!

Happy map making!