• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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