Advertisement
Guest User

Wither

a guest
Jul 30th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. while true do
  2. os.pullEvent("redstone")
  3. if rs.getInput("left",true) then
  4.  for i=1,4 do
  5.   turtle.forward()
  6.  end
  7.  turtle.select(1)
  8.  turtle.place()
  9.  turtle.up()
  10.  turtle.place()
  11.  turtle.turnLeft()
  12.  turtle.forward()
  13.  turtle.turnRight()
  14.  turtle.place()
  15.  turtle.up()
  16.  turtle.select(2)
  17.  turtle.place()
  18.  turtle.turnRight()
  19.  turtle.forward()
  20.  turtle.turnLeft()
  21.  turtle.place()
  22.  turtle.turnRight()
  23.  turtle.forward()
  24.  turtle.turnLeft()
  25.  turtle.down()
  26.  turtle.select(1)
  27.  turtle.place()
  28.  turtle.up()
  29.  turtle.select(2)
  30.  turtle.place()
  31.  turtle.turnLeft()
  32.  turtle.forward()
  33.  turtle.turnRight()
  34.  turtle.down()
  35.  for i=1,4 do
  36.   turtle.back()
  37.  end
  38.  turtle.down()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement