I Wanna Community

Fangames => Game Design => Programming Questions => Topic started by: danielh05 on February 26, 2018, 02:26:44 PM

Title: custom death sound for a besific room?
Post by: danielh05 on February 26, 2018, 02:26:44 PM
what i mean with this is how do i make it so that a room has a diffrent death sound then all the other ones, every kind of help would be nice
Title: Re: custom death sound for a besific room?
Post by: Lulu49_ on April 28, 2018, 12:40:08 PM
what i mean with this is how do i make it so that a room has a diffrent death sound then all the other ones, every kind of help would be nice

Hi, to make this, go to the creation code of your room and put this code :

Code: [Select]
player.deathSound = [Name of the muisic]

Next go to the player step event and put this code :

Code: [Select]
if player.deathSound == 0
{
     player.deathSound = sndDeath
}

and finally, go to the script "killPlayer" and in the line 16 remplace "sound_play(sndOnDeath);" and sound_play(sndDeath); by this code :

Code: [Select]
sound_play(player.deathSound);

I'm French so I'm sorry if I made English errors...