Advertisement
rungholt

housecorner

Aug 3rd, 2023 (edited)
1,000
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 1 0
  1. local function foundation()
  2.     turtle.up()
  3.     turtle.select(1)
  4.     turtle.placeDown()
  5.     turtle.forward()
  6.     turtle.placeDown()
  7.     turtle.back()
  8.     turtle.turnLeft()
  9.     turtle.forward()
  10.     turtle.placeDown()
  11.     turtle.back()
  12.     turtle.turnRight()
  13. end
  14.  
  15. local function upPlace()
  16.     for i = 1, 9 do
  17.         foundation()
  18.     end
  19. end
  20.  
  21. local function completeBuild()
  22.     foundation()
  23.     upPlace()
  24. end
  25.  
  26. local args = {...}
  27.     times = args[1]
  28.     for i = 1, times do
  29.         completeBuild()
  30.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement