EQ is writing in SC, but the idea is the same.
ON TIMER 100
mytimer = mytimer + 1
IF mytimer > 3 THEN mytimer = 1
SELECY CASE myTimer
CASE 1
' do this after 1 second
CASE 2
' do this after 2 seconds
CASE 3
' do this after 3 seconds
END SELECT
END TIMER