Advertisement
Maffin1231

Untitled

Apr 28th, 2024 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.73 KB | Gaming | 0 0
  1. function iff (x,y,z)
  2. if a[x][y][z]==1 then
  3. turtle.select(1)
  4. elseif a[x][y][z]==2 then
  5. turtle.select(2)
  6. elseif a[x][y][z]==3 then
  7. turtle.select(3)
  8. elseif a[x][y][z]==4 then
  9. turtle.select(4)
  10. end
  11. end
  12.  
  13. a = {{{1,1,1,1,1,1,1,1,1,1,1,1},
  14.       {1,2,2,2,2,2,2,2,1,1,1,1},
  15.       {1,2,2,2,2,2,2,2,1,1,1,1},
  16.       {1,1,2,2,2,2,2,2,1,1,1,1}},
  17.  
  18.      {{1,2,2,2,2,2,2,2,1,1,1,1},
  19.       {1,2,2,2,2,2,2,2,2,1,1,1},
  20.       {1,2,2,2,2,2,2,2,2,1,1,1},
  21.       {1,2,2,2,2,2,2,2,2,1,1,1}},
  22.  
  23.      {{2,2,2,2,2,2,2,2,2,1,1,1},
  24.       {2,2,2,2,2,2,2,2,2,2,1,1},
  25.       {2,2,2,2,2,2,2,2,2,2,1,1},
  26.       {2,2,2,2,2,2,2,2,2,2,1,1}},
  27.  
  28.      {{4,1,1,1,1,2,2,2,2,2,1,1},
  29.       {4,2,2,2,2,2,2,2,2,2,2,1},
  30.       {4,2,2,2,2,2,2,2,2,2,2,1},
  31.       {1,1,1,1,1,2,2,2,2,2,1,1}},
  32.  
  33.      {{1,1,1,1,1,1,2,2,2,2,2,1},
  34.       {1,1,1,1,1,2,2,2,2,2,2,1},
  35.       {1,1,1,1,1,2,2,2,2,2,2,1},
  36.       {1,1,1,1,1,2,3,2,3,2,1,1}},
  37.  
  38.      {{1,1,1,1,1,1,1,2,2,2,2,1},
  39.       {1,1,1,1,1,1,2,2,2,2,2,1},
  40.       {1,1,1,1,1,1,2,2,2,2,2,1},
  41.       {1,1,1,1,1,1,2,2,2,2,1,1}},
  42.  
  43.      {{1,1,1,1,1,1,1,1,1,1,1,1},
  44.       {1,1,1,1,1,1,1,2,2,2,2,4},
  45.       {1,1,1,1,1,1,1,2,2,2,2,4},
  46.       {1,1,1,1,1,1,1,1,1,1,1,1}},
  47.  
  48.       {{1,1,1,1,1,1,1,1,1,1,1,1},
  49.        {1,1,1,1,1,1,1,1,1,1,1,4},
  50.        {1,1,1,1,1,1,1,1,1,1,1,4},
  51.        {1,1,1,1,1,1,1,1,1,1,1,1}}}
  52.   for x=1, #a do
  53.   for y=1, #a[x] do
  54.     for z=1, #a[x][y] do
  55.       iff(x,y,z)
  56.       turtle.placeDown()
  57.       turtle.forward()
  58.     end
  59.     turtle.turnRight()
  60.     turtle.forward()
  61.     turtle.turnRight()
  62.     for y = 1,#a[x][y] do
  63.      turtle.forward()
  64.     end
  65.     turtle.turnRight()
  66.     turtle. turnRight()
  67.    end
  68.    turtle.turnLeft()
  69.    for y = 1,#a[x] do
  70.     turtle. forward()
  71.    end
  72.    turtle.turnRight()
  73.    turtle.up()
  74.   end
Tags: RTS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement