Advertisement
Maffin1231

Untitled

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