Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --monitor that I’m using is 4x3
- monitor = peripheral.wrap(“monitor_0”)
- printer = peripheral.wrap(“printer_0”)
- local function newLine()
- _,y = monitor.getCursorPos()
- monitor.setCursorPos(1, y+1)
- end
- local function newLineP()
- _,y = printer.getCursorPos()
- printer.setCursorPos(1,y+1)
- end
- local function moveCursorToSideP()
- y,_ = getCursorPos()
- printer.setCursorPos(y+2,_)
- end
- local function moveCursorToSide()
- y,_ = monitor.getCursorPos()
- monitor.setCursorPos(y+2, _)
- end
- local function askForVarX()
- print(“Please enter the X value: “)
- return read()
- end
- local function askForVarZ()
- print(“Please enter the Z value”)
- return read()
- end
- local function askForFac()
- print(“Please enter the faction name (if more than one word enter as one word)”)
- return read()
- end
- print(“Hello! Welcome to SuperUnitato’s base cords”)
- print(“filing system, enter one fac at a time”)
- print(“Now, enter the base cord information”)
- local x = askForVarX()
- local z = askForVarZ()
- local faction = askForFac()
- monitor.write(“X = “..x)
- moveCursorToSide()
- monitor.write(“Z = “..z)
- moveCursorToSide()
- monitor.write(faction)
- newLine()
- printer.newPage()
- printer.setPageTitle("Faction Base Cords")
- printer.write("X = "..x)
- moveCursorToSideP()
- printer.write("Z = "..z)
- moveCursorToSideP()
- printer.write(faction)
- printer.endPage()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement