Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

KillSounds Plugin - Documentation

๐€๐๐ฆ๐ข๐ง๐ข๐ฌ๐ญ๐ซ๐š๐ญ๐จ๐ซ๐ฌ
Jan
12
2
๐ƒ๐„๐•๐„๐‹๐Ž๐๐„๐‘ & ๐€๐ƒ๐Œ๐ˆ๐
๐…๐จ๐ฎ๐ง๐๐ž๐ซ
๐Œ๐ž๐ฆ๐›๐ž๐ซ

Kill soundsThumbnail.png

Introduction​

KillSounds is a premium Minecraft plugin that enhances the PvP experience on your server by allowing players to select custom sounds that play when they eliminate another player. This plugin adds an exciting audio dimension to combat that players will love and can be used as a monetization opportunity through sound permissions.

KillSounds features an intuitive GUI for sound selection, permission-based sound options, PlaceholderAPI support, and optimized asynchronous data handling to ensure smooth performance even on busy servers.​


Product Link: https://builtbybit.com/resources/killsounds-customizable-pvp-kill-sound.63504/

Installation​


Requirements​

  • Minecraft server running Paper/Spigot 1.20 or higher
  • (Optional) PlaceholderAPI for placeholder support

Installation Steps​

  1. Download the KillSounds plugin JAR file
  2. Place the JAR file in your server's plugins folder
  3. Restart your server or load the plugin using a plugin manager
  4. The plugin will generate default configuration files
  5. (Optional) Install PlaceholderAPI if you wish to use placeholders

Commands​


KillSounds provides the following commands:

CommandAliasDescriptionPermission
/killsounds/ksOpens the kill sound selector GUIkillsounds.use
/uksounds reload/uks reloadReloads the plugin configurationkillsounds.admin

Permissions​

KillSounds uses a permission-based system that allows you to restrict certain sounds to specific players or groups:


Core Permissions​

PermissionDescriptionDefault
killsounds.useAllows access to the kill sounds selectortrue
killsounds.adminAllows access to admin commandsop

Sound Permissions​

PermissionDescriptionDefault
killsounds.sound.meowAllows use of the meow kill soundtrue
killsounds.sound.gruntAllows use of the grunt kill soundtrue
killsounds.sound.splashAllows use of the splash kill soundtrue
killsounds.sound.roarAllows use of the roar kill soundtrue
killsounds.sound.growlAllows use of the growl kill soundtrue
killsounds.sound.slimeAllows use of the slime kill soundtrue
killsounds.sound.donkeyAllows use of the donkey kill soundtrue
killsounds.sound.howlAllows use of the howl kill soundtrue
killsounds.sound.mooAllows use of the moo kill soundtrue
killsounds.sound.batAllows use of the bat kill soundtrue
killsounds.sound.zombieAllows use of the zombie kill soundtrue
killsounds.sound.skeletonAllows use of the skeleton kill soundtrue
killsounds.sound.sneezeAllows use of the sneeze kill soundtrue
killsounds.sound.anvilAllows use of the anvil kill soundtrue
killsounds.sound.beaconAllows use of the beacon kill soundtrue
killsounds.sound.teleportAllows use of the teleport kill soundtrue

Configuration​


KillSounds is highly configurable through the config.yml file. Here's a breakdown of the configuration options:

Code:
# KillSounds Configuration

# How far away players can hear kill sounds (in blocks)
sound-distance: 30

# Volume of kill sounds (0.0 to 1.0)
sound-volume: 1.0

# Pitch of kill sounds (0.5 to 2.0)
sound-pitch: 1.0

# Whether to play sounds to the killer
play-to-killer: true

# Whether to play sounds to the victim
play-to-victim: true

# Custom sound options (you can add your own)
custom-sounds:
  # Example of a custom sound:
  # dragon:
  #   sound: ENTITY_ENDER_DRAGON_GROWL
  #   permission: killsounds.sound.dragon

# GUI settings
gui:
  # Title of the GUI
  title: "Kill sound selector"

  # Colors
  selected-color: "&#08FB1F"  # Lime color for selected items
  unselected-color: "&#FF0000"  # Red color for unselected items

# Messages
messages:
  no-permission: "&cโœ˜ You don't have permission to use this command."
  sound-selected: "&a&lโœ“ &aKill sound set to &e%sound%&a."
  sound-disabled: "&a&lโœ“ &aKill sounds have been disabled."
  reload-success: "&a&lโœ“ &aKillSounds plugin reloaded successfully."

Adding Custom Sounds​


To add a custom sound, uncomment and modify the example in the custom-sounds section:

Code:
custom-sounds:
  dragon:
    sound: ENTITY_ENDER_DRAGON_GROWL
    permission: killsounds.sound.dragon
  thunder:
    sound: ENTITY_LIGHTNING_BOLT_THUNDER
    permission: killsounds.sound.thunder

The sound value must be a valid Minecraft sound name from the Bukkit Sound Enum.


Features​


Sound Selection GUI​

KillSounds provides an intuitive GUI for players to select their kill sound:
  • The GUI shows all available sounds that the player has permission to use
  • The currently selected sound is highlighted in lime green
  • Unavailable sounds (no permission) are not displayed
  • "None" option is always available to disable kill sounds

Kill Detection System​

KillSounds features an advanced kill detection system that:
  • Correctly attributes kills in both direct and indirect PvP scenarios
  • Tracks damage over time to properly assign kill credit
  • Works with various combat plugins and vanilla combat mechanics

Data Storage​

Player sound preferences are stored in JSON files:
  • One file per player stored in the plugins/KillSounds/data/ directory
  • Files are named using player UUID (e.g., 123e4567-e89b-12d3-a456-426614174000.json)
  • Data is loaded asynchronously on plugin start and player login
  • Data is saved asynchronously when a player selects a sound or logs out
  • During server shutdown, data is saved synchronously to ensure no data loss

Performance Considerations​

KillSounds is designed with performance in mind:
  • Asynchronous data loading and saving
  • Efficient event handling
  • Low memory footprint
  • Minimal impact on server TPS

PlaceholderAPI Integration​

KillSounds integrates with PlaceholderAPI to provide placeholders for use in other plugins.


Available Placeholders​

PlaceholderDescriptionExample Output
%killsounds_selected%Shows the player's currently selected kill sound"Zombie", "Roar", "None"

Usage Examples​

  • Display in chat: Your current kill sound is: %killsounds_selected%
  • On scoreboards: Selected: %killsounds_selected%
  • In GUIs of other plugins that support PlaceholderAPI

Frequently Asked Questions​


Q: How do I add new sounds?​

A: To add custom sounds, edit the custom-sounds section in the config.yml file. You'll need to specify a sound name and the corresponding Bukkit Sound enum value.

Q: How can I make certain sounds VIP-only?​

A: Set the default permission to false in your permissions plugin for specific sound permissions (e.g., killsounds.sound.dragon: false), then grant that permission only to your VIP ranks.

Q: Can I change the GUI appearance?​

A: Yes, you can modify the GUI title and colors in the config.yml file under the gui section.

Q: Do kill sounds play for all deaths or just PvP?​

A: Kill sounds only play for PvP kills (player kills player), not for deaths by mobs, fall damage, etc.

Q: How far can players hear kill sounds?​

A: By default, kill sounds can be heard within a 30-block radius. You can adjust this in the config.yml with the sound-distance setting.


Troubleshooting​


Kill sounds aren't playing​

  • Ensure the player has selected a sound other than "None"
  • Check if the sound distance in config.yml is set appropriately
  • Verify that the player has permission for the selected sound
  • Make sure the killer and victim are both in the same world

Plugin fails to load​

  • Check the server console for error messages
  • Ensure you're using a supported server version (1.16+)
  • Verify the plugin JAR file is not corrupted

Data isn't saving​

  • Check server permissions for writing to the plugins/KillSounds directory
  • Ensure the server has sufficient disk space
  • Look for error messages in the server logs

PlaceholderAPI placeholders aren't working​

  • Verify that PlaceholderAPI is installed and up to date
  • Check if KillSounds properly registered with PlaceholderAPI (look for a message in console during startup)
  • Make sure you're using the correct placeholder syntax
 
Last edited:
Top