Advertisement
HamBrick327

andesite.lua

Dec 4th, 2022 (edited)
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. modem = peripheral.find("modem")
  2. chest1 = peripheral.wrap("minecraft:chest_12")
  3. chest2 = peripheral.wrap("minecraft:chest_10")
  4. out = peripheral.wrap("minecraft:chest_11")
  5. turt = modem.getNameLocal()
  6. t = turtle
  7.  
  8. t.select(3)
  9.  
  10. -- main loop
  11. while 1 do
  12.  
  13. t.craft(4)
  14. chest2.pushItems(turt, 1, 1) -- get cobble from chest and to slot on int eh turtle
  15. chest1.pushItems(turt, 1, 1) -- get quartz from chicken and send to slot 2 on the turtle
  16.  
  17. out.pullItems(turt, 3)
  18.    
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement