Guest User

stairs

a guest
Oct 14th, 2012
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.25 KB | None | 0 0
  1. for i=1,70 do
  2.   turtle.digDown()
  3.   turtle.down()
  4.   turtle.turnRight()
  5.   if turtle.detect()==false then
  6.   turtle.select(1)
  7.   turtle.place()
  8.   end
  9.   turtle.turnLeft()
  10.   turtle.turnLeft()
  11.   if turtle.detect()==false then
  12.   turtle.select(1)
  13.   turtle.place()
  14.   end
  15.   turtle.turnRight()
  16.   turtle.select(1)
  17.   turtle.placeDown()
  18.   turtle.dig()
  19.   sleep(.4)
  20.   while turtle.detect()==true do
  21.   turtle.dig()
  22.   sleep(.4)
  23.   end
  24.   turtle.forward()
  25.   turtle.turnRight()
  26.   if turtle.detect()==false then
  27.   turtle.select(1)
  28.   turtle.place()
  29.   end
  30.   turtle.turnLeft()
  31.   turtle.turnLeft()
  32.   if turtle.detect()==false then
  33.   turtle.select(1)
  34.   turtle.place()
  35.   end
  36.   turtle.turnRight()
  37.   turtle.digUp()
  38.   sleep(0.4)
  39.   while turtle.detectUp()==true do
  40.   turtle.digUp()
  41.   sleep(0.4)
  42.   end
  43.   turtle.up()
  44.   turtle.turnRight()
  45.   turtle.turnRight()
  46.   if i%6==0 then
  47.   turtle.select(2)
  48.   turtle.place()
  49.   end
  50.   turtle.turnLeft()
  51.   if turtle.detect()==false then
  52.   turtle.select(1)
  53.   turtle.place()
  54.   end
  55.   turtle.turnLeft()
  56.   if turtle.detect()==false then
  57.   turtle.select(1)
  58.   turtle.place()
  59.   end
  60.   turtle.turnLeft()
  61.   if turtle.detect()==false then
  62.   turtle.select(1)
  63.   turtle.place()
  64.   end  
  65.   turtle.turnRight()
  66.   turtle.down()
  67. end
Add Comment
Please, Sign In to add comment