-1

I have never had any experience with java but have managed to get something happening. What I want is to take my custom Minecraft map (Sonic Dash) and instead of making people get a resource pack I want to add the custom .ogg files I have made and make the plugin play them.

I already have the plugin created I just don't know how to add custom sound effects and get eclipse to play them without errors.

Ferrybig
  • 18,194
  • 6
  • 57
  • 79
Daniel Morris
  • 51
  • 1
  • 2
  • 11

2 Answers2

1

I'm afraid this isn't possible. This is as custom sound files must be played on the client and a plugin is incapable of sending these. You must use a resource pack if you want to play any sounds apart from the existing ones. Sorry for the disappointing answer, but it is important to understand the capabilities and limits of a plugin.

bcsb1001
  • 2,834
  • 3
  • 24
  • 35
1

You can play .nbs files as noteblock sounds. Try https://github.com/xxmicloxx/NoteBlockAPI Convert from midi to .nbs http://www.stuffbydavid.com/mcnbs

Anewil
  • 119
  • 1
  • 14