Advertisement
MagmaLP

Page 4

Jul 30th, 2023 (edited)
920
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 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,"Griefing:")
  10.     msg(01,03,"~~~~~~~~~")
  11.     msg(01,04,"Griefing of any kind is  ")
  12.     msg(01,05,"strictly prohibited.     ")
  13.     msg(01,06,"Bypassing or overcoming  ")
  14.     msg(01,07,"the security mechanics of")
  15.     msg(01,08,"any kind and destroying  ")
  16.     msg(01,09,"the property of a user is")
  17.     msg(01,10,"also strictly prohibited ")
  18.     msg(01,11,"and will be punished very")
  19.     msg(01,12,"hard.")
  20.     msg(01,13," ")
  21.     msg(01,14,"No landscape destructive ")
  22.     msg(01,15,"in the mainworld.        ")
  23.     msg(01,16,"(1x1 towers ect.) ")
  24.     msg(01,17,"Mining in the mainworld  ")
  25.     msg(01,18,"(ores, spawner, wood...) ")
  26.     msg(01,19,"is forbidden use /farm or")
  27.     msg(01,20,"/quarry.")
  28.     msg(19,21,"Page  4")
  29.     printer.setPageTitle("Page 4")
  30.     printer.endPage()
  31. else
  32.     error("Page could not be created.")
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement