Advertisement
Guest User

code

a guest
Jan 29th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. name = "dragonmaster90"
  2. side = "right"
  3.  
  4. function clear()
  5.    term.clear()
  6.    term.setCursorPos(1, 1)
  7. end
  8.  
  9. function green()
  10.    term.setBackgroundColor(colors.green)
  11.    clear()
  12. end
  13.  
  14. function red()
  15.    term.setBackgroundColor(colors.red)
  16.    clear()
  17. end
  18.  
  19. function white()
  20.    term.setBackgroundColor(colors.white)
  21.    clear()
  22. end
  23.  
  24. if not term.isColor() then
  25.    color = false
  26. else
  27.    color = true
  28. end
  29.  
  30. clear()
  31. while true do
  32.    if color then white() end
  33.    a, b = os.pullEventRaw()
  34.    if a == "player" and b == name then
  35.       if color then green() end
  36.       redstone.setOutput(side,true)
  37.       sleep(1)
  38.       redstone.setOutput(side,false)
  39.    else
  40.       if color then red() end
  41.       sleep(1)
  42.    end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement