Advertisement
Guest User

startup.lua

a guest
Mar 29th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local slots = {1, 2, 3, 5, 7, 9, 10, 11}
  2. while true do
  3.     for k, v in pairs(slots) do
  4.         turtle.select(v)
  5.         repeat sleep(0.25) until turtle.dig()
  6.     end
  7.     turtle.select(16)
  8.     turtle.craft()
  9.     peripheral.call("back", "pullItems", "east", 16)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement