ElectroZavr

Untitled

Jun 7th, 2024 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. -- 1 - glass
  2. -- 2 - black
  3. -- 3 - red
  4. Slots = {
  5.     {1, 1, 1, 2, 1, 1, 1},
  6.     {1, 1, 2, 3, 2, 1, 1},
  7.     {1, 2, 3, 3, 3, 2, 1},
  8.     {2, 3, 3, 3, 3, 3, 2},
  9.     {2, 3, 3, 2, 3, 3, 2},
  10.     {1, 2, 2, 1, 2, 2, 1}
  11. }
  12.  
  13. for line = 1, #Slots do
  14.     for elem = 1, #Slots[line] do
  15.       turtle.select(Slots[line][elem])
  16.       turtle.placeDown()
  17.       turtle.forward()
  18.     end
  19.  
  20.     for turt = 1, #Slots[line] do
  21.       turtle.back()
  22.     end
  23.     turtle.up()
  24. end
Add Comment
Please, Sign In to add comment