Skip to content

Instantly share code, notes, and snippets.

@auxiliary-character
Last active December 11, 2015 02:09
Show Gist options
  • Save auxiliary-character/4528528 to your computer and use it in GitHub Desktop.
Save auxiliary-character/4528528 to your computer and use it in GitHub Desktop.
Wall Clock in ComputerCraft
select(1) --Have a sign in slot 1.
while true do
turtle.dig()
turtle.place(textutils.formatTime(os.time,true)) --Change to false for 12 hour time.
sleep(1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment