Advertisement
MagmaLP

Page 6

Jul 30th, 2023 (edited)
812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.93 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,"")
  12.     msg(01,05,"The Stuff is no          ")
  13.     msg(01,06,"Tekkit Lite - Wiki.      ")
  14.     msg(01,07,"")
  15.     msg(01,08,"If you have smaller      ")
  16.     msg(01,09,"questions, we and the    ")
  17.     msg(01,10,"community can help you.  ")
  18.     msg(01,11,"")
  19.     msg(01,12,"Decisions and            ")
  20.     msg(01,13,"instructions from the    ")
  21.     msg(01,14,"stuff have to be         ")
  22.     msg(01,15,"followed by the users.   ")
  23.     msg(01,16,"")
  24.     msg(01,17,"")
  25.     msg(01,18,"")
  26.     msg(01,19,"")
  27.     msg(01,20,"")
  28.    
  29.     msg(19,21,"Page  6")
  30.     printer.setPageTitle("Page 6")
  31.     printer.endPage()
  32. else
  33.     error("Page could not be created.")
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement