Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function quarryMove()
- print("Moving...")
- rs.setOutput("right", true)
- sleep(1)
- rs.setOutput("right", false)
- sleep(1)
- print("Done Moving.")
- end
- function quarryMine()
- print("Mining...")
- rs.setOutput("left", true)
- sleep(20)
- print("Done Mining. retarcting")
- rs.setOutput("left", false)
- sleep(10)
- print("Done Mining.")
- end
- quarryMine()
- quarrtMove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement