Advertisement
Corbinhol

new furnace system

Sep 25th, 2022
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. --temp furnace setup
  2. local redstoneSide = "right";
  3. local furnace = peripheral.wrap("back")
  4.  
  5.  
  6. while true do
  7. if furnace.BurnTime <= 1 then
  8. redstone.setOutput(redstoneSide, true);
  9. sleep(1);
  10. redstone.setOutput(redstoneSide, false);
  11. sleep(4);
  12. end
  13. sleep(0);
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement