Advertisement
Alexr360

Welcome Screen

Mar 26th, 2024 (edited)
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. -- Print a line of dashes for aesthetics
  2. local function lineBreak()
  3.     local width, height = term.getSize()
  4.     for i = 1, width do
  5.       io.write("-")
  6.     end
  7.     io.write("\n")
  8. end
  9. -- Function to clear the screen
  10. local function clearScreen()
  11.     term.clear()
  12.     term.setCursorPos(1, 1)
  13. end
  14.  
  15. clearScreen()
  16. -- Print the welcome message
  17. print("Welcome to Monopoly OS by Monopoly Co.")
  18. lineBreak()
  19. print("Current Time: " .. textutils.formatTime(os.time(), true))
  20. lineBreak()
  21. print("Select a program to run:")
  22. print("1. Bastion")
  23. print("2. GPS")
  24. print("3. Artillery Controller")
  25. print("4. Teleport Controller")
  26. print("5. To-Do List")
  27. print("6. Update")
  28. print("7. Exit")
  29. lineBreak()
  30.  
  31. local choice = read()
  32.  
  33. if choice == "1" then
  34.   shell.run("Bastion")
  35. elseif choice == "2" then
  36.   shell.run("GPS")
  37. elseif choice == "3" then
  38.   shell.run("ArtilleryControl")
  39. elseif choice == "4" then
  40.   shell.run("Teleport")
  41. elseif choice == "5" then
  42.   shell.run("todo")
  43. elseif choice == "6" then
  44.   shell.run("Update")
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement