Advertisement
Guest User

startup

a guest
Jun 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1. montitle = peripheral.wrap("monitor_0")
  2. mon = peripheral.wrap("back")
  3.  
  4. mon.setTextScale(1)
  5. i = 1
  6.  
  7. local function write(text)
  8.   mon.setCursorPos(1,i)
  9.   mon.write(text)
  10.   i = i + 1
  11. end
  12.  
  13. write("1) Don't grief. It's just not nice.")
  14. write("2) Don't be a jerk. Be nice, it's better for everyone.")
  15. write("3) Stealing from people or claimed areas is not allowed. Find somewhere")
  16. write("    abandoned.")
  17. write("4) Scams and assaulting people is permitted. Be friendly to your")
  18. write("    neighbours.")
  19. write("5) Exploting glitches is a banable offence. Report them and you'll")
  20. write("    recieve a reward.")
  21. write("6) Hacking will result in a ban. Just please, play legit.")
  22. write("7) Do no build next to other people without permission. People need")
  23. write("    personal space.")
  24. montitle.setTextScale(5)
  25. while true do
  26.   montitle.setCursorPos(1,1)
  27.   montitle.setTextColor(colors.pink)
  28.   montitle.write("The Rules!")
  29.   sleep(1)
  30.   montitle.setCursorPos(1,1)
  31.   montitle.setTextColor(colors.lightBlue)
  32.   montitle.write("The Rules!")
  33.   sleep(1)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement