HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

JASS Music?

08-08-2005, 06:44 PM#1
EvilShade
Greetings,

I know that in the WEU is an trigger for this, but i dont need the hole stuff from the WEU, only this: That an Track is only played for ONE player, not all.

Could someone tell me the code that make it work? I cant realy handle JASS.
08-10-2005, 01:55 PM#2
Zoxc
I coud only find play sound for player:

If u want to use it add this to global script:
Quote:
function PlaySoundForPlayer takes player whichPlayer, sound whichSound returns nothing
if ( whichPlayer == GetLocalPlayer() ) then
call PlaySoundBJ( whichSound )
endif
endfunction

Then you can use it like un WEU.