Last active
December 11, 2015 02:09
-
-
Save auxiliary-character/4528528 to your computer and use it in GitHub Desktop.
Wall Clock in ComputerCraft
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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