Sound | The old sound options were merely an enabled option and a sound enum. This version features per direction options, enabled, sound, pitch, volume, and world. See the default settings below:
Code (YAML):
# Elevator sound: # View supported sound enums here; https://jd.bukkit.org/org/bukkit/Sound.html # And here; https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html # Both 1.8 and 1.8+ Sounds enums are supported. # Pitch: 0.5 to 2.0 # Volume: 0 to 1.0 (Larger values increases the distance from where it can be heard) # World: Specifies whether the sound is played only to the elevated player or everyone in range. elevatorSound:
up:
enabled: true
sound: "ORB_PICKUP" pitch: 0.5
world: false
down:
enabled: true
sound: "ORB_PICKUP" pitch: 1
world: false
You'll have to add the above manually. If you don't wish to change the defaults you do not have to add it.
The below is no longer in use. You may remove it from your config.yml file:
Code (YAML):
# Elevator ding sound: # View supported sound enums here; https://jd.bukkit.org/org/bukkit/Sound.html # And here; https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html # Both 1.8 and 1.8+ Sounds enums are supported. dingSound: "ORB_PICKUP" ding: true