kebbanalex

Something

Jul 1st, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. function OpenDoor()
  2.     rs.setOutput("right", true)
  3.     sleep(2)
  4.     rs.setOutput("right", false)
  5.     sleep(3)
  6.     rs.setOutput("left", true)
  7.     sleep(2)
  8.     rs.setOutput("left", false)
  9. end
  10. function Something()
  11.     print("Hi")
  12.     sleep(1)
  13.     print("This function does nothing and is here only for demostration purpuse")
  14. end
  15. while true do
  16.     OpenDoor()
  17.     Something()
  18. end
Add Comment
Please, Sign In to add comment