PlaySoundFromOffsetBJ

Parameters
soundHandle sound
volumePercent real
startingOffset real
return type
nothing
Source code
function PlaySoundFromOffsetBJ takes sound soundHandle, real volumePercent, real startingOffset returns nothing
    call SetSoundVolumeBJ(soundHandle, volumePercent)
    call PlaySoundBJ(soundHandle)
    call SetSoundOffsetBJ(startingOffset, soundHandle)
endfunction
Source
Blizzard.j
wc3modding.com
PlaySoundFromOffsetBJ