Advertisement
UtkaRobert303

Shrek

Mar 3rd, 2024 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | Gaming | 0 0
  1. function iff (x,y)
  2. if a[x][y]==1 then
  3. turtle.select(1)
  4. elseif a[x][y]==2 then
  5. turtle.select(2)
  6. elseif a[x][y]==3 then
  7. turtle.select(3)
  8. elseif a[x][y]==4 then
  9. turtle.select(4)
  10. elseif a[x][y]==5 then
  11. turtle.select(5)
  12. elseif a[x][y]==6 then
  13. turtle.select(6)
  14. end
  15. end
  16.  
  17. a={{1,1,1,2,2,2,2,2,1,1,1} ,
  18.    {1,1,2,2,2,2,2,2,2,1,1} ,
  19.    {1,1,2,1,3,2,3,1,2,1,1} ,
  20.    {1,1,1,2,2,2,2,2,1,1,1} ,
  21.    {1,1,1,2,2,2,2,2,1,1,1} ,
  22.    {1,2,4,4,5,5,5,4,4,2,1} ,
  23.    {1,2,4,4,5,5,5,4,4,2,1} ,
  24.    {1,1,1,4,4,5,4,4,1,1,1} ,
  25.    {1,1,1,4,4,4,4,4,1,1,1} ,
  26.    {1,1,1,2,2,1,2,2,1,1,1} ,
  27.  
  28.  
  29. turtle.up()
  30. for x=1,2  do
  31. for y = 1,11 do
  32. iff(x,y)
  33. turtle.placeDown()
  34. turtle.forward()
  35. end
  36. turtle.turnRight()
  37. turtle.forward()
  38. turtle.turnRight()
  39. for y = 1,11 do
  40. turtle.placeDown()
  41. turtle.forward()
  42. end
  43. turtle.turnLeft()
  44. turtle.forward()
  45. turtle.turnLeft()
  46. end
  47.  
Tags: RTS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement