Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----------------------------------------------------------
- -- Hypno's Better Level Emitter --
- -- --
- -- Hypno FTB Unleashed Episode 17 --
- -- https://www.youtube.com/watch?v=FVdn09e_2R0 --
- -- --
- -- YouTube Channel http://youtube.com/hypnotizd --
- ----------------------------------------------------------
- local p = peripheral.wrap("bottom")
- while true do
- local bones = p.listAll()[352]
- if (redstone.getOutput("top") == true) then
- if (bones < 1000) then
- redstone.setOutput("top", false)
- end
- elseif (redstone.getOutput("top") == false) then
- if (bones > 2000) then
- redstone.setOutput("top", true)
- end
- end
- os.sleep(60)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement