Admin , banned , pain , death , jump thats all.
I don't think you can actually replace the game's default sounds and have other players hear your custom sounds, so only you'll be able to hear them on your server
If you're okay with that, you'll need to have a
client.cs file that you can make with Notepad with this as it's content
package NewServerSounds
{
function clientCmdMissionStart(%i)
{
Parent::clientCmdMissionStart(%i);
JumpSound.fileName = "./YOUR_FILE_NAME01.wav";
DeathCrySound.fileName = "./YOUR_FILE_NAME02.wav";
PainCrySound.fileName = "./YOUR_FILE_NAME03.wav";
AdminSound.fileName = "./YOUR_FILE_NAME04.wav";
}
};
activatePackage(NewServerSounds);
I can't remember anything about the ban sound right now so try those out and make sure your file names are correct
If you don't know what the folder structure should look like, it should look like this
Blockland-
Add-Ons--
Client_NewServerSounds---
client.cs---
description.txt---
YOUR_FILE_NAME01.wav---
YOUR_FILE_NAME02.wav---
YOUR_FILE_NAME03.wav---
YOUR_FILE_NAME04.wavPackaging the add-on as a ZIP file isn't necessary unless you want to share it with others