AmbleLabsAmbleLabs Wiki
Addons & Datapacks

Custom Hum

This is how you can add unique ambient sounds to your tardis interior.

Datapack

  1. Create a new .json file in the path below.

data/namespace/hum/hum_name.json

  1. Inside this new .json file, type the following:
{
 "id": "namespace:of_hum",
 "sound": {
   "sound_id": "sound:id"
 }
}
  1. When replacing the namespace:of_hum and the sound:id, Make sure that the of_hum part is named the same as the json file and the sounds id matches what it is in-game (using the /playsound command).

If you don't know how to add a custom sound to Minecraft, follow THIS VIDEO !

example:

{
  "id": "ait:copper",
  "sound": {
    "sound_id": "ait:tardis/hums/copper_hum"
  }
}

On this page