Advertisement
bacon_donut

Flashing Monitor To Troll Straymav

Sep 18th, 2013
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. -- Epileptic Flashing Monitor made to troll Straymav
  2. -- requires Advanced Monitors, text placement was
  3. -- intended for 2x4 wall of them.
  4.  
  5. local m = peripheral.wrap("right")
  6.  
  7. m.setCursorPos(5,3)
  8. m.setTextScale(2)
  9.  
  10. while true do
  11.     m.setCursorPos(5,3)
  12.     m.setBackgroundColor(colors.blue)
  13.     m.clear()
  14.     m.write("Hi Straymav!")
  15.     sleep(0.1)
  16.     m.setCursorPos(5,3)
  17.     m.setBackgroundColor(colors.red)
  18.     m.clear()
  19.     m.write("Hi Straymav!")
  20.     sleep(0.1)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement