In my single comp I'd just have the time's set from server startup but I don't think all the timers can run at once with parallel.
2nd issue: Can you see a difference as to why the second one below does not work from the same computer
3rdly: Is there something I should use rather than the sleep function for very long times of 15 minutes or more?
lottery: [works]
--test for magenta
rs.setBundledOutput ("back",colors.magenta)
sleep(0.1)
rs.setBundledOutput("back",0)
startup: [doesn't]
local function clear()
term.clear()
term.setCursorPos(1,1)
end
clear()
local function reset() -- RESET for all outputs
rs.setBundledOutput("back",0)
rs.setBundledOutput("left",0)
rs.setBundledOutput("right",0)
sleep(0.2)
end
reset()
print("The command block functions timer")
-- Lottery Timer
-- 10 minutes after every server restart 'give at random'
-- location is 'back - magenta'
rs.setBundledOutput("back", colors.magenta)
reset()
-- TEST ZONE-----------------------------------------------
rs.setBundledOutput("back", colors.lime)
rs.setBundledOutput("back", colors.red)
rs.setBundledOutput("back", colors.magenta)
reset()