• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Sounds

Status
Not open for further replies.
None.
GetLocalPlayer() is the only method.Besides,many GUI codes that has "Only for this player" effect uses GetLocalPlayer.
Here is the blizzard.j(GUI) codes about sounds:
JASS:
//===========================================================================

function StartSoundForPlayerBJ takes player whichPlayer, sound soundHandle returns nothing

    if (whichPlayer == GetLocalPlayer()) then

        call StartSound(soundHandle)

    endif

endfunction



//===========================================================================

function VolumeGroupSetVolumeForPlayerBJ takes player whichPlayer, volumegroup vgroup, real scale returns nothing

    if (GetLocalPlayer() == whichPlayer) then

        call VolumeGroupSetVolume(vgroup, scale)

    endif

endfunction
 
Level 20
Joined
Jun 27, 2011
Messages
1,864
None.
GetLocalPlayer() is the only method.Besides,many GUI codes that has "Only for this player" effect uses GetLocalPlayer.
Here is the blizzard.j(GUI) codes about sounds:
JASS:
//===========================================================================

function StartSoundForPlayerBJ takes player whichPlayer, sound soundHandle returns nothing

    if (whichPlayer == GetLocalPlayer()) then

        call StartSound(soundHandle)

    endif

endfunction



//===========================================================================

function VolumeGroupSetVolumeForPlayerBJ takes player whichPlayer, volumegroup vgroup, real scale returns nothing

    if (GetLocalPlayer() == whichPlayer) then

        call VolumeGroupSetVolume(vgroup, scale)

    endif

endfunction

Hmm, alright. Thanks!
 
Status
Not open for further replies.
Top