mob/var/sound/sound
mob/verb/test1()
sound = sound('dry voice.ogg', 1, 0, 1, 30)
sound.environment = -1
sound.x = 0
sound.y = 0
sound.z = 0
sound.status = SOUND_STREAM
src << sound
mob/verb/test2()
var/sound/other_sound = sound('clap.ogg', 0, 0, 2, 40)
other_sound.environment = 7
src << other_sound
http://files.byondhome.com/FIREking/sound_test_src.zip
Use verb test1() and hear the dry voice. Use verb test2() and hear the clap with reverb. Now keep listening and you'll hear that the reverb has been unexpectedly added to the first sound...