Cookieeater 10 Posted March 10, 2013 I am making a TvT mission and one thing I want is different music for both sides. The problem is that when any of the teams hit their corresponding trigger for music, the custom music plays globally. How can I make it so that custom music can only be heard by one team? Share this post Link to post Share on other sites
sxp2high 23 Posted March 10, 2013 Hi, put this into the "condition" fields of the triggers: this && ((side player) == west) this && ((side player) == east) Share this post Link to post Share on other sites
Cookieeater 10 Posted March 10, 2013 Thanks, it works. Share this post Link to post Share on other sites
kiory 405 Posted March 10, 2013 Interesting, I have a similar situation, how about if they are on the same side, but in different groups? Share this post Link to post Share on other sites
sxp2high 23 Posted March 11, 2013 Then you have to name the groups. I.e. Put this into the group leaders init line (or into all group members init lines - just to make sure...): group1 = (group this); And the trigger condition: this && ((group player) == group1) Share this post Link to post Share on other sites