Advertisement
MagmaLP

Page 8

Jul 30th, 2023 (edited)
948
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.01 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,"Bypassing the AFK kick is")
  12.     msg(01,05,"not permitted in any way.")
  13.     msg(01,06,"")
  14.     msg(01,07,"The use of landmarks is  ")
  15.     msg(01,08,"only allowed for your    ")
  16.     msg(01,09,"own quarry.")
  17.     msg(01,10,"")
  18.     msg(01,11,"Completing achievements  ")
  19.     msg(01,12,"deceptively is not       ")
  20.     msg(01,13,"allowed and will be      ")
  21.     msg(01,14,"punished.")
  22.     msg(01,15,"")
  23.     msg(01,16,"Asking and selling hints,")
  24.     msg(01,17,"information or complete  ")
  25.     msg(01,18,"solutions for puzzle     ")
  26.     msg(01,19,"achievements is          ")
  27.     msg(01,20,"prohibited!")
  28.    
  29.     msg(19,21,"Page  8")
  30.     printer.setPageTitle("Page 8")
  31.     printer.endPage()
  32. else
  33.     error("Page could not be created.")
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement