PlaySoundFromOffsetBJ

Parameters
soundHandle sound
volumePercent real
startingOffset real
comment
patch

1.07

Source
Blizzard.j
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