[Trigger] Sound help

Status
Not open for further replies.
Level 1
Joined
May 22, 2008
Messages
1
What I have right now is basically, When a certain unit dies play an imported sound at the center of a region. This is where the trouble starts, when the sound is played, it plays across the entire map, but I only want Red(or any random player) to hear it. So how would I make it so only Red can hear it? Is there a way that it would only play in a certain region and not outside of the region?
 
Level 19
Joined
Aug 24, 2007
Messages
2,888
Create a variable named OMFGPLAYER
  • Set OMFGPLAYER = Player you want
  • Sound - Set Sound Position to center of region etc etc etc
  • Custom script: if GetLocalPlayer() == udg_OMFGPLAYER then
  • Sound - Play etc etc
  • Custom script: endif
 
Status
Not open for further replies.
Top