PlaySound

Parameters
soundName string
return type
nothing
Source code
function PlaySound takes string soundName returns nothing
    local sound soundHandle = CreateSound(soundName, false, false, true, 12700, 12700, "")
    call StartSound(soundHandle)
    call KillSoundWhenDone(soundHandle)
endfunction
Source
Blizzard.j
wc3modding.com
PlaySound