Advertisement
Hubnester

Centrifuge Input Handling

Jul 2nd, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. combs = {
  2. "resourcefulbees:allthemodium_honeycomb_block",
  3. "resourcefulbees:aluminum_honeycomb_block",
  4. "resourcefulbees:aquamarine_honeycomb_block",
  5. "resourcefulbees:beeper_honeycomb_block",
  6. "resourcefulbees:blazing_honeycomb_block",
  7. "resourcefulbees:certus_honeycomb_block",
  8. "resourcefulbees:coal_honeycomb_block",
  9. "resourcefulbees:cobalt_honeycomb_block",
  10. "resourcefulbees:cobbee_honeycomb_block",
  11. "resourcefulbees:copper_honeycomb_block",
  12. "resourcefulbees:crimson_iron_honeycomb_block",
  13. "resourcefulbees:diamond_honeycomb_block",
  14. "resourcefulbees:dirty_honeycomb_block",
  15. "resourcefulbees:dragonic_honeycomb_block",
  16. "resourcefulbees:emerald_honeycomb_block",
  17. "resourcefulbees:ender_honeycomb_block",
  18. "resourcefulbees:fluorite_honeycomb_block",
  19. "resourcefulbees:glowing_honeycomb_block",
  20. "resourcefulbees:gold_honeycomb_block",
  21. "resourcefulbees:gravely_honeycomb_block",
  22. "resourcefulbees:guardian_honeycomb_block",
  23. "resourcefulbees:icey_honeycomb_block",
  24. "resourcefulbees:iron_honeycomb_block",
  25. --"resourcefulbees:catnip_honeycomb_block",
  26. "resourcefulbees:lapis_honeycomb_block",
  27. "resourcefulbees:lava_honeycomb_block",
  28. "resourcefulbees:lead_honeycomb_block",
  29. "resourcefulbees:leafy_honeycomb_block",
  30. "resourcefulbees:lumber_honeycomb_block",
  31. "resourcefulbees:magma_honeycomb_block",
  32. "resourcefulbees:mana_honeycomb_block",
  33. "resourcefulbees:mason_honeycomb_block",
  34. "resourcefulbees:netherite_honeycomb_block",
  35. "resourcefulbees:nickel_honeycomb_block",
  36. "resourcefulbees:obsidian_honeycomb_block",
  37. "resourcefulbees:osmium_honeycomb_block",
  38. "resourcefulbees:platinum_honeycomb_block",
  39. "resourcefulbees:quartz_honeycomb_block",
  40. "resourcefulbees:redstone_honeycomb_block",
  41. "resourcefulbees:rgbee_honeycomb_block",
  42. "resourcefulbees:salt_baee_honeycomb_block",
  43. "resourcefulbees:sandy_honeycomb_block",
  44. "resourcefulbees:silver_honeycomb_block",
  45. "resourcefulbees:slimy_honeycomb_block",
  46. "resourcefulbees:soul_lava_honeycomb_block",
  47. "resourcefulbees:spider_honeycomb_block",
  48. "resourcefulbees:spooky_honeycomb_block",
  49. "resourcefulbees:stoned_honeycomb_block",
  50. "resourcefulbees:tin_honeycomb_block",
  51. "resourcefulbees:unobtainium_honeycomb_block",
  52. "resourcefulbees:uraninite_honeycomb_block",
  53. "resourcefulbees:uranium_honeycomb_block",
  54. "resourcefulbees:vibranium_honeycomb_block",
  55. "resourcefulbees:water_honeycomb_block",
  56. "resourcefulbees:wither_honeycomb_block",
  57. "resourcefulbees:withered_honeycomb_block",
  58. "resourcefulbees:zinc_honeycomb_block",
  59. "resourcefulbees:zombee_honeycomb_block"
  60.  
  61. }
  62.  
  63. rs = peripheral.wrap("left")
  64.  
  65. i = 1
  66. while true do
  67. term.clear()
  68. term.setCursorPos(1, 1)
  69. term.write(combs[i])
  70.  
  71. if (rs.exportItem({name=combs[i], count=1}, "EAST") or 0) ~= 0 then
  72. i = (i % #combs) + 1
  73. end
  74. os.sleep(0)
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement