Advertisement
Jahn_M_L

room

Apr 5th, 2025 (edited)
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.60 KB | None | 0 0
  1. local args = {...}
  2. xCurrent = 1
  3. yCurrent = 1
  4. xMax = 4
  5. zMax = 4
  6. facing = 0 --start 0,
  7.  
  8.  
  9. function digUpDown()
  10.     while turtle.detectUp() do
  11.         turtle.digUp()
  12.         sleep(1)
  13.     end
  14.     while turtle.detectDown() do
  15.         turtle.digDown()
  16.         sleep(1)
  17.     end
  18. end
  19.  
  20. function dig()
  21.     digUpDown()
  22.  
  23.     while turtle.detect() do
  24.             turtle.dig()
  25.             sleep(1)
  26.    
  27.     end
  28. end
  29.  
  30.  
  31.  
  32. function start()
  33.    
  34.  
  35.     while zCurrent < zMax do
  36.         if facing == 0 then
  37.             if xCurrent == xMax then
  38.                 turtle.turnRight()
  39.                 dig()
  40.                 turtle.forward()
  41.                 turtle.turnRight()
  42.                 zCurrent = zCurrent +1
  43.                 facing = 1
  44.             else
  45.                 while xCurrent < xMax do
  46.                     dig()
  47.                     turtle.forward()
  48.                     xCurrent = xCurrent +1
  49.                 end
  50.                 if zCurrent == zMax then
  51.                     turtle.turnLeft()
  52.                     dig()
  53.                     turtle.forward()
  54.                     turtle.turnLeft()
  55.                     zCurrent = zCurrent +1
  56.                     facing = 1
  57.                 end
  58.             end
  59.         end
  60.  
  61.         if facing == 1 then
  62.             while xCurrent > 1 do
  63.                 dig()
  64.                 turtle.forward()
  65.                 xCurrent = xCurrent -1
  66.             end
  67.             if xCurrent == 1 then
  68.                 turtle.turnLeft()
  69.                 dig()
  70.                 turtle.forward()
  71.                 turtle.turnLeft()
  72.                 zCurrent = zCurrent +1
  73.                 facing = 0
  74.             end
  75.         end
  76.     end
  77. end
  78.  
  79.  
  80.  
  81.  
  82. --Begin
  83. if #args == 2 then
  84.     start()
  85. elseif #args == 0 then
  86.     start()
  87. else
  88.     print("Usage: room <x> <z>")
  89. end
  90.  
Tags: cc:tweaked
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement