01-16-2014, 02:06 AM
Not sure if this is the best method (or if it works) but:
function CountDown(Param)
cRoot:Get():BroadcastChat(Param[1])
end)
for I=1, 10 do -- Countdown.
AddSchedule(CountDown, {I}, I * 20)) -- 20 ticks is one second right? then 1 * 20 is 20 ticks is one second etc.
end

