Advertisement
-LONER-

CCTurtle Swinger

Oct 14th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. --this is a program for a computercraft turtle, a part of a mod for minecraft
  2. x=0
  3. for z = 0, 1000000, 1 do
  4.     for x = 0,  10, 1 do
  5.         turtle.attack()
  6.         sleep(0.5)
  7.     end
  8.     turtle.turnLeft()
  9.     turtle.turnLeft()
  10.     for y = 1, 16, 1 do
  11.         turtle.drop()
  12.     turtle.select(y)
  13.     end
  14.     turtle.turnLeft()
  15.     turtle.turnLeft()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement