Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- nFurnaces = 8
- SmeltTime = 10
- x = 0
- function moveFor()
- if turtle.forward() then
- x = x + 1
- return true
- else
- return false
- end
- end
- function moveBack()
- if turtle.back() then
- x = x - 1
- return true
- else
- return false
- end
- end
- while true do
- os.sleep(0.1)
- print(tostring(os.time()))
- end
Advertisement
Add Comment
Please, Sign In to add comment