I wanted to alternate between the two sounds, and my total experience with audio files to date is zero. However, SUCCESS!
The one-shot pressure plate activates Script 1, the starter
T-DAY:
Script 1
-plays a toc, or clickdown.
-activates timer 1, a 2s interval bugger linked to Script 2, TOC, which begins it's job in 2 seconds.
-activates timer 2, a 1s interval gizmo that is linked to script 3, ignition
T-DAY+1
Script 3
-plays a tic, or clickup.
-activates timer 3, a 2s interval whatchamacallit linked to script 4, TIC, which begins it's job in 2 seconds.
-deactivates timer 2, who the hell needs it anyway. Timer 2 dies a slow, excruciating death in the darkness.
T-DAY+2
TOC, Script 2, comes online like the hand of death, beginning it's relentless di-second countdown to infinity.
T-DAY+3
TIC, script 4, clinches the noose, partitioning the raw power of TOC into slightly-less-insurmountable 1-second pieces. Your fate has been sealed.
here's a copy of the incredibly esoteric guts:
Script1
function starter()
playSound("click_up")
timer_1:activate()
timer_2:activate()
end
--timer_1 activates
Script2
function playtoc()
playSound("click_up")
end
--timer_2 activates timer_3 and
Script3
function ignition()
playSound("click_down")
timer_2:deactivate()
end
--Timer 3 activates
function playtic()
playSound("click_down")
end
-edit
Yeah, I think you understood good sir, many thanks. The booleans eh? I SHOULD HAVE KNOWN.