Author Topic: Wrong Sound file playing.  (Read 1324 times)

slimysim

  • Newbie
  • *
  • Posts: 8
    • View Profile
Wrong Sound file playing.
« on: August 08, 2021, 05:55:02 AM »
Hi there,

I have a tournament where I have created a sound file for each blind level of my tournament called "Blinds 100 200" and "Blinds 200 400" etc etc.  The trigger is set to (A Level Starts) and I have set the criteria for each even to "ante=200" etc  (I am using big blind antes so the rounds are set at SB 100 BB 200 ANTE 200 etc etc.

The problem I have is that most seem to trigger fine but on a few of them it plays the wrong sound file (Keeps playing 300 600).  I have looked and looked and the ante is definitely set right in the rounds and in the criteria for the event.  Any ideas?

Simon

Stuart Murray

  • Hero Member
  • *****
  • Posts: 540
    • View Profile
Re: Wrong Sound file playing.
« Reply #1 on: August 08, 2021, 09:22:08 AM »
hi, are your ante announcements separate from your blind announcements or are they one combined sound file which plays the blind amount and the ante amount?

your conditions would need to be something along these lines (For separate blind/ante announcements):

Trigger: A Level Starts
Conditions: isRound and (smallBlind = 200) and (bigBlind = 400) and (state = 2) and (roundNum > 1)
Actions: Play Sound: 200 - 400

with a separate event for the ante:

Trigger: The Clock Ticks
Conditions: isRound and (ante = 400) and (secondsElapsed = 6) and (state = 2) and (roundNum > 1)
Actions: Play Sound: Ante 400

or for combined blind/ante sound files you would need something along these lines:

Trigger: A Level Starts
Conditions isRound and (smallBlind = 200) and (bigBlind = 400) and (ante = 400) and (state = 2) and (roundNum > 1)
Actions Play Sound: 200 - 400 - a400
Stuart Murray

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: Wrong Sound file playing.
« Reply #2 on: August 08, 2021, 01:08:30 PM »
Attach your saved Events template and we can take a look.

slimysim

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: Wrong Sound file playing.
« Reply #3 on: August 09, 2021, 10:03:11 AM »
I found the solution, I had the round before the break with criteria of......
ante=600
not (isbreak=1)

I should have had an AND between the 2 checks.

Thanks anyway

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: Wrong Sound file playing.
« Reply #4 on: August 09, 2021, 12:59:40 PM »
Yep that will do it.  You can also simplify it to ante=600 and isbreak=0 or ante=600 and isround=1.