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 :
player.deathSound = [Name of the muisic]
Next go to the player step event and put this code :
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 :
sound_play(player.deathSound);
I'm French so I'm sorry if I made English errors...