MagmaLP

Page 5

Jul 30th, 2023
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1. local printer = peripheral.wrap("bottom")
  2.  
  3. function msg(gap, line, text)
  4.     printer.setCursorPos(gap,line)
  5.     text = printer.write(text)
  6. end
  7.  
  8. if printer.newPage() then
  9.     msg(01,02,"Dealing with Players:")
  10.     msg(01,03,"~~~~~~~~~~~~~~~~~~~~~")
  11.     msg(01,04,"Racist, sexist and       ")
  12.     msg(01,05,"The Third Reich related  ")
  13.     msg(01,06,"behavior, statements in  ")
  14.     msg(01,07,"the chat, builds or skins")
  15.     msg(01,08,"are forbidden under all  ")
  16.     msg(01,09,"circumstances.")
  17.     msg(01,10,"")
  18.     msg(01,11,"Unrespectful behavior    ")
  19.     msg(01,12,"or insults are not       ")
  20.     msg(01,13,"tolerated!")
  21.     msg(01,14,"")
  22.     msg(01,15,"If you have problems     ")
  23.     msg(01,16,"with a user or technical ")
  24.     msg(01,17,"issues ask a staff member")
  25.     msg(01,18,"")
  26.     msg(01,19,"")
  27.     msg(01,20,"")
  28.    
  29.     msg(19,21,"Page  5")
  30.     printer.setPageTitle("Page 5")
  31.     printer.endPage()
  32. else
  33.     error("Page could not be created.")
  34. end
Add Comment
Please, Sign In to add comment