Author Topic: Create a Event  (Read 1186 times)

rafatins

  • Newbie
  • *
  • Posts: 20
    • View Profile
Create a Event
« on: May 20, 2014, 06:23:42 PM »
Hello, how do I create an event in which missing when the 300 second round 4, a message appears "x" by "y" seconds and touch a sound "z"?

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Create a Event
« Reply #1 on: May 21, 2014, 09:06:21 AM »
At 5 minutes left in round 4, you want to display a message and play a sound?

If so, create an event with the trigger "The clock ticks" and set the conditions to:

isRound and (roundNum = 4) and (secondsLeft = 300)

Add Actions to it to display your message and to play your sound.  You probably also want to move the event to the top of the list of events.

rafatins

  • Newbie
  • *
  • Posts: 20
    • View Profile
Re: Create a Event
« Reply #2 on: May 21, 2014, 11:50:58 AM »
worked perfectly, thank you.