PasaP

Infinity dropped Item detector

Oct 11th, 2019
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. p=peripheral.wrap("top")
  2.  
  3. while true do
  4. sleep(0.2)
  5. a=p.getEntityIds("ITEM")
  6.  
  7. --print(#a)
  8.  
  9. if a[1]==nil then
  10. rs.setOutput("back", true)
  11. else
  12. rs.setOutput("back", false)
  13. end
  14.  
  15. end
Add Comment
Please, Sign In to add comment