Advertisement
TNT_Nolan

Probability Sim Installer

Mar 31st, 2016
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. term.clear()
  2. term.setBackgroundColor(colors.gray)
  3. term.setCursorPos(1,1)
  4. term.setTextColor(colors.black)
  5. print("Probability Simulator! 0.2alpha Installer")
  6. term.setBackgroundColor(colors.black)
  7. term.setCursorPos(1,4)
  8. term.setTextColor(colors.green)
  9. print("Would you like to install Probability Simulator? [y/n]")
  10. term.setCursorPos(1,6)
  11. local detect = read()
  12. if detect == "y" then
  13. term.clear()
  14. term.setCursorPos(1,1)
  15. term.setTextColor(colors.lime)
  16. term.write("Downloading...")
  17. shell.run("rom/programs/http/pastebin","get","mmE9HaAC","probabilitysim")
  18. shell.run("rom/programs/http/pastebin","get","4XsbCqQS","probablitysimpaint")
  19. term.clear()
  20. term.setCursorPos(1,1)
  21. term.setTextColor(colors.green)
  22. print("Done! Please report any bugs on the fourm.")
  23. sleep(0.75)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement