Advertisement
MagmaLP

Page 3

Jul 30th, 2023
939
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 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,"Chat rules:")
  10.     msg(01,03,"~~~~~~~~~~~")
  11.     msg(01,05,"No Spam, no caps,no      ")
  12.     msg(01,06,"advertisement of any kind")
  13.     msg(01,07,"and no begging for ranks,")
  14.     msg(01,08,"items, sun, day or")
  15.     msg(01,09,"anything else.")
  16.     msg(19,21,"Page  3")
  17.  
  18.     printer.setPageTitle("Page 3")
  19.     printer.endPage()
  20. else
  21.     error("Page could not be created.")
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement