Advertisement
jBlume

Place Torches

Jun 27th, 2013
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. --Places a torch every 5th block until runs into wall
  2. turtle.select(1)
  3.  
  4. turtle.up()
  5.  
  6. while true do
  7.  
  8. turtle.placeDown()
  9. for f=1,5 do
  10. turtle.forward()
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement