Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. local screen = peripheral.wrap("right")
  2. screen.setTextScale(2)
  3. screen.setTextColor(colors.orange)
  4.  
  5. term.redirect(screen)
  6.  
  7.  
  8. function rawread()
  9. while true do
  10. local sEvent, param = os.pullEvent("key")
  11. if sEvent == "key" then
  12. if param == 28 then
  13. print("Enter detected")
  14. break
  15. end
  16. end
  17. end
  18. end
  19.  
  20. while true do
  21. textutils.slowPrint("\n Welcome one and all... \nLadies and gentlemen... \nBOYS AND GIRLS \nTo the Richard of Doom. \nThe lobby is open 24/7 so please help yourself to some coffee and refreshments \nRing the bell and absolutely nothing will happen. Go on, try it! \n \nRules: \n 1:Don't be an ass. \n ...that's it. Just don't be an ass. \nToo bad Syca has already broken that rule. \nIf you see a man named LordSyca please report him immeditaly. \n Thanks")
  22. sleep(3)
  23. term.clear()
  24. term.setCursorPos(1,1)
  25. end
  26.  
  27. term.restore()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement