Margresse404

botaniaTimedDroppings

Jun 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. local botaniaInterface = peripheral.wrap("tileinterface_8")
  2.  
  3. coalFP = {id= "minecraft:coal", dmg = 0}
  4. local counter = 0
  5.  
  6. while true do
  7. botaniaInterface.exportItem(coalFP, "north", 19, 1)
  8. botaniaInterface.exportItem(coalFP, "west", 12, 1)
  9. print("exported items")
  10. sleep(55)
  11. counter = counter + 1
  12. if counter == 5 then
  13. counter = 0
  14. redstone.setOutput('left', true)
  15. sleep(30)
  16. redstone.setOutput('left', false)
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment