Advertisement
Guest User

stairtorch.lua

a guest
Nov 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. --config
  2. -- torch distance
  3. tD = 4
  4. -- steps
  5. s = 64
  6.  
  7.  
  8. -- program
  9.  
  10. a = 8
  11.  
  12. turtle.select(1)
  13. turtle.refuel()
  14. for b = 1,s,1 do
  15.     if a == tD then
  16.         turtle.select(2)
  17.         turtle.place()
  18.         a = 0
  19.     else
  20.         turtle.down()
  21.         turtle.forward()
  22.         a = a + 1
  23.     end
  24. end
  25. for b = 1,s,1 do
  26.         turtle.back()
  27.         turtle.up()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement