Advertisement
SuperUnitato

SuperUnitato's Faction Base Cord Library V1.0

Mar 13th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. --monitor that I’m using is 4x3
  2. monitor = peripheral.wrap(“monitor_0”)
  3. printer = peripheral.wrap(“printer_0”)
  4.  
  5. local function newLine()
  6. _,y = monitor.getCursorPos()
  7. monitor.setCursorPos(1, y+1)
  8. end
  9.  
  10. local function newLineP()
  11. _,y = printer.getCursorPos()
  12. printer.setCursorPos(1,y+1)
  13. end
  14.  
  15. local function moveCursorToSideP()
  16. y,_ = getCursorPos()
  17. printer.setCursorPos(y+2,_)
  18. end
  19.  
  20. local function moveCursorToSide()
  21. y,_ = monitor.getCursorPos()
  22. monitor.setCursorPos(y+2, _)
  23. end
  24.  
  25. local function askForVarX()
  26. print(“Please enter the X value: “)
  27. return read()
  28. end
  29.  
  30. local function askForVarZ()
  31. print(“Please enter the Z value”)
  32. return read()
  33. end
  34.  
  35. local function askForFac()
  36. print(“Please enter the faction name (if more than one word enter as one word)”)
  37. return read()
  38. end
  39.  
  40. print(“Hello! Welcome to SuperUnitato’s base cords”)
  41. print(“filing system, enter one fac at a time”)
  42. print(“Now, enter the base cord information”)
  43.  
  44. local x = askForVarX()
  45. local z = askForVarZ()
  46. local faction = askForFac()
  47.  
  48. monitor.write(“X = “..x)
  49. moveCursorToSide()
  50. monitor.write(“Z = “..z)
  51. moveCursorToSide()
  52. monitor.write(faction)
  53. newLine()
  54.  
  55. printer.newPage()
  56. printer.setPageTitle("Faction Base Cords")
  57. printer.write("X = "..x)
  58. moveCursorToSideP()
  59. printer.write("Z = "..z)
  60. moveCursorToSideP()
  61. printer.write(faction)
  62. printer.endPage()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement