Epic Boss Music

Started by The Average Gamer on

Topic category: User side tutorials

Last seen on 17:14, 9. Dec 2023
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Epic Boss Music

So I have some epic boss music that I want to play when a boss is alive and stop when he is dead. Is there any way I can do this?

Last seen on 17:13, 13. Aug 2020
Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
In the mob procedure section…
Tue, 08/13/2019 - 17:36

In the mob procedure section, you can have a procedure that executes when the mob first spawns.  For your procedure, you can find the play sound block in the world management section.  However, I don't know if there is a way to stop or replay your music once the boss is killed, or if they aren't killed yet.

Last seen on 17:13, 13. Aug 2020
Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Oh, you also have to go to…
Tue, 08/13/2019 - 17:38

Oh, you also have to go to resources/sound files and import your epic boss music.

Last seen on 22:48, 26. May 2022
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Here's how one could use…
Mon, 08/19/2019 - 03:24

Here's how one could use boss music when it comes to mobs, both start and stop.

 

On initial mob spawn
- Use this block:

Play at X:(x) Y:(y) Z:(z) level:(Num) pitch:(Num) sound:(Sound)

 If it's a custom sound, I believe the sound is played based on what category it is in, such as master, ambient, player, neutral, hostile, block, record, and music.

When mob dies
- There's not necessarily an official stopsound block, however you could use this block:

Execute command /

 and use this command:

stopsound @a <sound category> <sound>

This should work for what you want to have happen, but I could be wrong.

Last seen on 18:11, 18. Mar 2021
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
oh my god thats useful for…
Wed, 07/01/2020 - 12:32

oh my god thats useful for me too

Last seen on 17:12, 30. Jun 2023
Joined Sep 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How i Put the block in…
Fri, 08/06/2021 - 18:14

How i Put the block in initial mob spawn

Last seen on 19:02, 26. Mar 2024
Joined Dec 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
its not a block its a…
Fri, 08/06/2021 - 19:55

its not a block its a trigger in the mob mod element

Last seen on 21:04, 12. Jan 2024
Joined Sep 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
how do i make the music loop…
Sat, 10/21/2023 - 13:13

how do i make the music loop? Since it just stops at one point

Last seen on 22:22, 26. Jan 2024
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
first, you have to know how…
Sat, 01/13/2024 - 21:43

first, you have to know how many seconds long your song is. in minecraft, one second = 20 ticks, so multiply the song length in seconds by 20, so <song length> × 20.

heres an example:

song length = 3:21 minutes ÷ 60 = 201 seconds

201 seconds × 20 = 4020 ticks

 

now you know how many ticks your song plays for, so you can now use the [wait <ticks> , then on server-side:] block to trigger the song again. you should also put an if-statement to check if the boss is still alive.