| 03-23-2006, 02:32 AM | #1 |
Is it possible for only a certain team or playergroup to hear a sound? |
| 03-23-2006, 05:50 AM | #2 |
Do something like this: JASS:if GetLocalPlayer() == yourPlayer then call StartSound(yourSound) endif Or this: JASS:if IsPlayerInForce(GetLocalPlayer(), yourForce) then call StartSound(yourSound) endif It should work, just remember to create the sound outside the if statement. |
