Advertisement
RobotBubble

CButtonHelp

Nov 30th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1, 1)
  3. term.setTextColor(colors.lightGray)
  4. print("--------------------------")
  5. print("---")
  6. term.setTextColor(colors.lightBlue)
  7. term.setCursorPos(4, 2)
  8. print("Bubble Bot Computers")
  9. term.setTextColor(colors.lightGray)
  10. term.setCursorPos(24, 2)
  11. print("---")
  12. print("--------------------------")
  13. term.setCursorPos(1, 5)
  14. term.setTextColor(colors.white)
  15. term.setCursorPos(1, 5)
  16. print("[M] Options")
  17. term.setCursorPos(1, 7)
  18. print("[1] Admin. Access?")
  19. term.setCursorPos(1, 9)
  20. print("[2] Program error")
  21. term.setCursorPos(1, 11)
  22. print("[3] Emotional error")
  23. term.setCursorPos(1, 13)
  24. print("[4] Upgrade Computer")
  25. term.setCursorPos(1, 15)
  26. print("[5] Disclaimer")
  27. term.setCursorPos(1, 17)
  28. print("[6] S.B.R.")
  29. local sEvent, param = os.pullEvent("key")
  30. if(sEvent == "key" ) then
  31. if(param == 2) then
  32. term.clear()
  33. term.setCursorPos(1, 1)
  34. textutils.slowPrint("Admin access can edit/view program coding.")
  35. sleep(3)
  36. shell.run("menu")
  37. elseif(param == 3) then
  38. term.clear()
  39. term.setCursorPos(1, 1)
  40. textutils.slowPrint("Please inform Robot Bubble")
  41. sleep(3)
  42. shell.run("menu")
  43. elseif(param == 4) then
  44. term.clear()
  45. term.setCursorPos(1, 1)
  46. textutils.slowPrint("Keep your chin up")
  47. sleep(2)
  48. textutils.slowPrint("It'll get better I promise")
  49. sleep(2)
  50. textutils.slowPrint("1.800.273.8255")
  51. sleep(2)
  52. textutils.slowPrint("If it gets worse call this")
  53. sleep(1)
  54. textutils.slowPrint("Listen to some Yellowcard")
  55. sleep(2.5)
  56. textutils.slowPrint("They're a great/happy band")
  57. sleep(2.5)
  58. textutils.slowPrint("or blink182, they are")
  59. sleep(.5)
  60. textutils.slowPrint("fucking brilliant")
  61. sleep(3)
  62. textutils.slowPrint("Anyway")
  63. sleep(2.5)
  64. textutils.slowPrint("Stay strong, mate")
  65. sleep(3)
  66. term.setCursorPos(19, 10)
  67. term.setTextColor(colors.red)
  68. textutils.slowPrint("<3")
  69. sleep(15)
  70. term.setTextColor(colors.white)
  71. print("Returning to menu...")
  72. sleep(5)
  73. shell.run("menu")
  74. elseif(param == 5) then
  75. term.clear()
  76. term.setCursorPos(1, 1)
  77. print("Speak to Bubble")
  78. sleep(5)
  79. shell.run("help")
  80. elseif(param == 6) then
  81. term.clear()
  82. term.setCursorPos(1, 1)
  83. textutils.slowPrint("The following programs")
  84. textutils.slowPrint("were NOT developed by")
  85. textutils.slowPrint("Robot Bubble")
  86. sleep(5)
  87. term.clear()
  88. term.setCursorPos(1, 1)
  89. print("Chat - JDU4wJxX")
  90. print("Calculator - 0wkqTE1A")
  91. print("Notes - mga8qSsW")
  92. print("2048 - xyGMBBBk")
  93. print("Stackerz - HC1MjHVq")
  94. print("ReactionTime - WLHFC6v6")
  95. print("TypeTest - AH002ptP")
  96. sleep(20)
  97. shell.run("help")
  98. elseif(param == 7) then
  99. term.clear()
  100. term.setCursorPos(1, 1)
  101. print("Soul Brother Rangers")
  102. textutils.slowPrint("is a gaming community")
  103. textutils.slowPrint("focusing on xbox and pc.")
  104. textutils.slowPrint("If you are interested in")
  105. textutils.slowPrint("joining please visit:")
  106. term.setTextColor(colors.lightBlue)
  107. textutils.slowPrint("sbrgaming.com")
  108. sleep(7.5)
  109. shell.run("help")
  110. elseif(param == 50) then
  111. term.clear()
  112. term.setCursorPos(1, 1)
  113. shell.run("options")
  114. else
  115. shell.run("help")
  116. end
  117. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement