Advertisement
Guest User

stairs

a guest
Sep 27th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("Hello, I am Stairman3000")
  4. print("are the stairs going to go up or down?")
  5.  
  6. local a = read()
  7.  
  8. print("build stars "  ..a.. "? ok..")
  9. print("working")
  10.  
  11. if a = "up" then
  12.   print("how high?")
  13.   local b = read()
  14.   print("Are there blocks in my way?")
  15.   local c = read()
  16.   if c = "yes" then
  17.       for z = 1, b do
  18.         turtle.digUp()
  19.         turtle.Up()
  20.         turtle.dig()
  21.         turtle.forward()
  22.       end
  23.   end    
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement