Advertisement
Guest User

open.lua

a guest
Jan 18th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.01 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3.  
  4. local sides = require("sides")
  5. local rs = component.redstone
  6. local gpu = component.gpu
  7. local screen = component.screen
  8.  
  9. local resx, resy = gpu.maxResolution()
  10.  
  11. gpu.setResolution(resx, resy)
  12. gpu.setBackground(0x000000)
  13. gpu.fill( 1, 1, resx, resy, " ")
  14.  
  15. component.motion_sensor.setSensitivity(3)
  16.  
  17. local chad = "chudders1231"
  18. local charlie = "d0pey"
  19.  
  20. while true do
  21.  
  22.   local _, _, _, _, _, entityName =  event.pull("motion")
  23.  
  24.   if entityName == chad or entityName == charlie then
  25.    
  26.     local w, h = gpu.getResolution()
  27.  
  28.     rs.setOutput(sides.left, 15)
  29.  
  30.     gpu.setBackground(0x03A678)
  31.    
  32.     gpu.fill( 1, 1, w, h, " ")
  33.  
  34.     os.sleep(3)
  35.  
  36.     gpu.setBackground( 0x000000 )
  37.    
  38.     gpu.fill( 1, 1, w, h, " ")
  39.  
  40.     rs.setOutput( sides.left, 0)
  41.  
  42.   else
  43.     local w, h = gpu.getResolution()
  44.  
  45.     gpu.setBackground(0xE74C3C)
  46.  
  47.     gpu.fill( 1, 1, w, h, " ")
  48.  
  49.     os.sleep(3)
  50.    
  51.     gpu.setBackground( 0x000000 )
  52.    
  53.     gpu.fill( 1, 1, w, h, " ")
  54.  
  55.   end
  56.  
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement