Guest User

startup

a guest
Aug 19th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | None | 0 0
  1. while true do
  2.   os.pullEvent("redstone")
  3.   if rs.getInput("top") then
  4.     rs.setBundledOutput("back", 49296)
  5.     -- black red grey yellow
  6.       sleep("2")
  7.     rs.setBundledOutput("back", 16528)
  8.     -- red grey yellow
  9.       sleep("2")
  10.     rs.setBundledOutput("back", 144)
  11.     -- grey yellow
  12.       sleep("2")
  13.     rs.setBundledOutput("back", 16)
  14.     -- yellow
  15.       sleep("2")
  16.    
  17.     sleep("8")
  18.    
  19.     rs.setBundledOutput("back", 2307)
  20.     -- blue lightgrey orange white
  21.       sleep("2")
  22.     rs.setBundledOutput("back", 259)
  23.     -- lightgrey orange white
  24.       sleep("2")
  25.     rs.setBundledOutput("back", 3)
  26.     -- orange white
  27.       sleep("2")
  28.     rs.setBundledOutput("back", 1)
  29.     --white
  30.       sleep("2")
  31.   end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment