Advertisement
MinecraftRocks999

ComputerCraft Clock for Monitors

Aug 3rd, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. mon = peripheral.wrap("back")
  2. mon.setTextColor(8)
  3. mon.setBackgroundColor(1)
  4. mon.setTextScale(5)
  5. while true do
  6.    mon.clear()
  7.    mon.setCursorPos(7,2)
  8.    time = os.time()
  9.    mon.write(textutils.formatTime(time, true))
  10.    sleep(0.1)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement