psychedelixx

Minecraft Turtle: Cobblegrinder

May 21st, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. --[[
  2.         2013 (c) psychedelixx
  3.         Minecraft Turtle: Cobblegrinder
  4.         2013-05-21
  5.  
  6.         Grinds cobblestones, generated by lava and water and drops it beneath the turtle.
  7.  
  8.         Usage:
  9.         - use turtle and type "label set <name>"
  10.           (to give your turtle an unique name so it remembers its programs)
  11.         - type "pastebin get FpngLgXc grind"
  12.         - type "grind"
  13. --]]
  14.  
  15. while true do
  16.     turtle.dig()
  17.     turtle.dropDown()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment