--Maximum MiniMulti Timer by Phatty --Can make as many as you want --I am using it for Gekko with now 8 timers --This clever little multitimer can be ajusted to do anything, just try ;) TimeLogger = 0 function Main() SetTimer(3*60000) StartTimer() end function OnTimer() TimeLogger = TimeLogger + 1 CheckTimerX() SendToAll("Big huge test 1") end function CheckTimerX() if TimeLogger == 2 then TimeLogger = 0 SendToAll("The big test2") end end