SoundEffect is a plugin and an API which make easy to create any sound effect by compiling all sort of existing sound already present in Minecraft.
All the messages sent by SoundEffect are configurable in the message.yml file. You can also create your own message file and change it in the config file. Feel free to send me any translation and I'll add it into SoundEffect.
The plugin use metrics and an integrated updater.
Both can be disable in config.yml
All commands have a full tab completion with a detailed help.
As it is designed as an API, you can add SoundEffect to your plugin using maven
<repositories>
<repository>
<id>hexosse-repo</id>
<url>https://raw.github.com/hexosse/maven-repo/master/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.hexosse</groupId>
<artifactId>SoundEffect</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
The API can be found in SoundEffectApi class.