RTS_Dmitriy

Untitled

May 23rd, 2024
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- 1 - red
  2. -- 2 - yellow
  3. -- 3 - green
  4. -- 4 - pink
  5. -- 5 - black
  6. slots= {
  7.   {1,1,2},
  8.   {4,5,2},
  9.   {4,3,3}
  10. }
  11.  
  12. for stroka = 1,#slots do
  13.     for zmeyka = 1,#slots do
  14.       slot= slots[zmeyka]
  15.       turtle.select(slot)
  16.       turtle.forward ()
  17.       turtle.placeDown()
  18.     end
  19.  
  20.     for nazat=1,#slots do
  21.     turtle.back()
  22.     end
  23.  
  24.     turtle.turnLeft()
  25.     turtle.forward()
  26.     turtle.turnRight()
  27. end
Add Comment
Please, Sign In to add comment