Author Topic: events ????????????/  (Read 998 times)

macacan

  • Sr. Member
  • ****
  • Posts: 265
    • View Profile
    • Chorley Poker League
events ????????????/
« on: November 16, 2009, 02:22:03 PM »
OK, tried and tried to get this to work,

sound event for 5 min till break, i can not get this to work.
searched through loads of threads on here.
Found one with this on,

(not isRound) and (state = 2) and (secondsLeft = 60) and ((roundNum = 3) or (roundNum = 6) or (roundNum = 9) or (roundNum = 12))

so i changed it to this, (not isRound) and (state = 2) and (secondsLeft = 900) and ((roundNum = 6))

so level 6 is the level before the break, the level is 20 min (20 x 60 = 1200 - 300 = 900) that gives me 5 min to the break

I tried all different ways, level start, level end, clockticking none work.

Anybody help ?




Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: events ????????????/
« Reply #1 on: November 16, 2009, 02:55:23 PM »
(not isRound) means it's a break
(state = 2) means during the tournament
(secondsLeft = 900) means 5 minutes before the timer expires
(roundNum = 6) means it is round 6

Use "the clock ticks" as the trigger.

Since you are trying to get this to fire during the round preceding a break, "(not isRound)" should be "isRound".  This would make it fire when 5 minutes remain on the clock during round 6.

isRound and (state = 2) and (secondsLeft = 60) and ((roundNum = 3) or (roundNum = 6) or (roundNum = 9) or (roundNum = 12))

macacan

  • Sr. Member
  • ****
  • Posts: 265
    • View Profile
    • Chorley Poker League
Re: events ????????????/
« Reply #2 on: November 16, 2009, 03:38:03 PM »
Cheers Corey

That works now.