Advertisement
honeyphos1234

Game loader

Jun 24th, 2015
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.37 KB | None | 0 0
  1. Term.setTextColor(colors.red)
  2. If fs.exists("ttt") == false then
  3.  Term.write('Tic Tac Toe is not present installing...')
  4.  Shell.run('pastebin get A2BTn5Kk ttt')
  5. End
  6. If fs.exists("2048") == false then
  7.  Term.write('2048 is not present, installing...')
  8.  Shell.run('pastebin get 48VM6ZyM 2048')
  9. End
  10. If fs.exists("slots") == false then
  11.  Term.write('slots is not present, installing...')
  12.  Shell.run('pastebin get b4CpuB6N slots')
  13. End
  14. Term.setTextCursor(colors.blue)
  15. Term.write("")
  16. Term.write("you are using honeyphos' game program")
  17. Sleep(1.5)
  18. Term.write("it is required to use wired modems to connect the monitors")
  19. Sleep(1.5)
  20. Term.write("all you need to do is change the monitor ID")
  21. Sleep(1.5)
  22. Term.write("if you don't know how then google how to connect modems")
  23. Term.write("")
  24. Term.setTextColor(colors.green)
  25. bs.open("ttt")
  26. term.write('Loading Tic Tac Toe...')
  27. Sleep(0.75)
  28. term.write('Tic Tac Toe is running')
  29. bs.open("2048")
  30. term.write('Loading 2048...')
  31. Sleep(0.75)
  32. Term.write('2048 is running')
  33. --bs.open("checkers")
  34. Term.write('Loading checkers...')
  35. Sleep(0.75)
  36. Term.setTextColor(colors.red)
  37. Term.write('checkers is in development, game not available')
  38. Term.setTextColor(colors.green)
  39. bs.open("slots")
  40. Term.write('Loading slots...')
  41. Sleep(0.75)
  42. Term.write('slots is running')
  43. term.setCursorPos(1, 1)
  44. Term.write('')
  45. term.write("all games are running...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement