Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Print a line of dashes for aesthetics
- local function lineBreak()
- local width, height = term.getSize()
- for i = 1, width do
- io.write("-")
- end
- io.write("\n")
- end
- -- Function to clear the screen
- local function clearScreen()
- term.clear()
- term.setCursorPos(1, 1)
- end
- clearScreen()
- -- Print the welcome message
- print("Welcome to Monopoly OS by Monopoly Co.")
- lineBreak()
- print("Current Time: " .. textutils.formatTime(os.time(), true))
- lineBreak()
- print("Select a program to run:")
- print("1. Bastion")
- print("2. GPS")
- print("3. Artillery Controller")
- print("4. Teleport Controller")
- print("5. Update")
- print("6. Exit")
- lineBreak()
- local choice = read()
- if choice == "1" then
- shell.run("Bastion")
- elseif choice == "2" then
- shell.run("GPS")
- elseif choice == "3" then
- shell.run("ArtilleryControl")
- elseif choice == "4" then
- shell.run("Teleport")
- elseif choice == "5" then
- shell.run("Update")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement