Author Topic: Sound Event Help Please.  (Read 1493 times)

Mesnik44

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Sound Event Help Please.
« 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.


Stuart Murray

  • Hero Member
  • *****
  • Posts: 540
    • View Profile
Re: Sound Event Help Please.
« Reply #1 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
« Last Edit: April 04, 2014, 01:23:54 PM by Stuart Murray »
Stuart Murray

Mesnik44

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Re: Sound Event Help Please.
« Reply #2 on: April 04, 2014, 01:39:18 PM »
Thanks Stu!