Advertisement
MagmaLP

page 7

Jul 30th, 2023
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 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,"Advantages:              ")
  10.     msg(01,03,"~~~~~~~~~~~              ")
  11.     msg(01,04,"")
  12.     msg(01,05,"The use of multiaccounts,")
  13.     msg(01,06,"account-sharing and      ")
  14.     msg(01,07,"alts are prohibited.     ")
  15.     msg(01,08,"If you have smaller      ")
  16.     msg(01,09,"")
  17.     msg(01,10,"The use of bots, hacks,  ")
  18.     msg(01,11,"x-ray textures, unfair   ")
  19.     msg(01,12,"client mods or anything  ")
  20.     msg(01,13,"related/similar is       ")
  21.     msg(01,14,"completely forbidden.    ")
  22.     msg(01,15,"")
  23.     msg(01,16,"The useage of known bugs ")
  24.     msg(01,17,"and unfair advantages is ")
  25.     msg(01,18,"forbidden. If you        ")
  26.     msg(01,19,"encounter a bug, report  ")
  27.     msg(01,20,"it to a staff.            ")
  28.    
  29.     msg(19,21,"Page  7")
  30.     printer.setPageTitle("Page 7")
  31.     printer.endPage()
  32. else
  33.     error("Page could not be created.")
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement