Advertisement
Wassaa

Redstone

Dec 30th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. function dropFuel()
  2.     if rs.getInput("back") == false then
  3.         rs.setOutput("top", true)
  4.         os.sleep(1)
  5.         rs.setOutput("top", false)
  6.     end
  7. end
  8. dropFuel()
  9. while true do
  10.     os.pullEvent("redstone")
  11.     dropFuel()
  12.    
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement