IntroductionRecently I found that in the ClassiCube web client only exists the grass sound. So I made two ZIPs with the sounds and the music, and I found a manner for play it. How I think that we can play the soundsI'm a programmer, and I found a manner how to replay the sounds. This script on JavaScript can play the sounds: function playSounds() {
const playSound = () => {
new Audio({/*change this in the file direction.*/}).play();
}
playSound();
intervalId = setInterval(playAudio, 100);
} This script plays a sound that is in this new Audio component. Obviously, is required to change it. ZIPs with the soundsHow I talked, the ClassiCube web client can only replay the grass sounds, but no music or other sounds. So, I made 2 ZIPs. One is with sounds, and the second is with the music.. Here is the ZIPs: First ZIP Second ZIP I know that you can copy the original files in the app folder, but, I made this ZIPs for a better ORGANIZING.