The Tournament Director Forums

Main => Help Me => Topic started by: Mesnik44 on April 04, 2014, 12:57:51 PM

Title: Sound Event Help Please.
Post by: Mesnik44 on April 04, 2014, 12:57:51 PM
Is there anyway to have the event take place for multiple breaks?

Right now it sits at (isRound = 0) and (state = 2) and (breakNum = 1)

Is there way to have it trigger for breaks 1, 2, 5, 6, etc? Does this logic work? (isRound = 0) and (state = 2) and (breakNum = 1) or (isRound = 0) and (state = 2) and (breakNum = 2) or (isRound = 0) and (state = 2) and (breakNum = 5) or (isRound = 0) and (state = 2) and (breakNum = 6)

Thanks in advance.

Title: Re: Sound Event Help Please.
Post by: Stuart Murray on April 04, 2014, 01:22:11 PM
or is the key to this one - note also the double brackets on breakNum conditions:

(isRound = 0) and (state = 2) and ((breakNum = 1) or (breakNum = 2) or (breakNum = 5) or (breakNum = 6))

Stu
Title: Re: Sound Event Help Please.
Post by: Mesnik44 on April 04, 2014, 01:39:18 PM
Thanks Stu!