I have several custom sounds I wish to implement in a multiplayer mission, and I would like them to play on all clients.
1)Some of the sounds are activated using say or playsound in the activation field of 'killed','hit' and 'incomingmissile' eventhandlers. My understanding is that 'killed' and 'hit' eventhandlers will be run on every machine if they are attached to an enemy ai. Will the sounds be heard by all clients or by no one?
2)Some are called from scripts using say or playsound. I know these must be explicitly played on each client.
3)Some sounds are activated using say or playsound in the activation field of a trigger. Will these sounds be heard by all clients or by no one?
4)Is the only true solution to this problem to use a server/client sound engine similar to that used in the ECP project? Can anyone give a brief description of how this system works?
5)Any other suggestions on how to deal with this?