Guest User

Uhrzeit Turm

a guest
Jan 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. mon = peripheral.wrap("back")
  2. mon.setTextScale(5)
  3. while true do
  4. mon.clear()
  5. mon.setCursorPos(1,1)
  6. local nTime = os.time()
  7. mon.write(textutils.formatTime(nTime,false))
  8. sleep(1)
  9. end
Add Comment
Please, Sign In to add comment