MastaC729

Colorful Lamp Random Test

Aug 23rd, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local speed = 0.5
  2. local bool
  3. local tSide = "top"
  4. local cSide = "back"
  5.  
  6. while true do
  7.   bool = rs.getInput(tSide)
  8.   if bool then
  9.     rs.setBundledOutput(cSide,math.random(0,32767))
  10.     sleep(speed)
  11.   else
  12.     rs.setBundledOutput(cSide,0)
  13.     event = os.pullEvent("redstone")
  14.   end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment