Advertisement
charonme

chcollector

Apr 22nd, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- chcollector
  2. -- doesn't need fuel, doesn't move
  3. -- mines what's down, deposits it up
  4.  
  5. while true do
  6.     os.sleep(0.5)
  7.     turtle.select(1)
  8.     turtle.digDown()
  9.     os.sleep(0.5)
  10.     turtle.select(1)
  11.     turtle.dropUp(64)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement