Jump to content
Sign in to follow this  
Cookieeater

How to play different custom music for different teams at the same time?

Recommended Posts

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

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×