Advertisement
CompCrafter

Untitled

Sep 30th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. mon = peripheral.wrap("left")
  2. mon.clear()
  3. sleep(1)
  4. -------------------------------------
  5. function unsetAll(sSide)
  6. redstone.setBundledOutput(sSide, 0)
  7. end
  8. -----------------------------------
  9. mon.setCursorPos(5,4)
  10. mon.clear()
  11. mon.setBackgroundColor(colors.green)
  12. mon.setTextScale(2)
  13. mon.write("Vampir")
  14. mon.setCursorPos(5,6)
  15. mon.write("Toaster")
  16. mon.setCursorPos(7,8)
  17. mon.write("An!")
  18. sleep(1)
  19. ---------------------------------------------
  20. rs.setBundledOutput("right", colors.white)
  21. rs.setBundledOutput("right", colors.gray)
  22. sleep(5)
  23. rs.setBundledOutput("right", colors.red)
  24. os.pullEvent("monitor_touch")
  25. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement