Don't like ads? PRO users don't see any ads ;-)
Guest

startup

By: a guest on Aug 17th, 2012  |  syntax: Lua  |  size: 0.27 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. os.pullEvent = os.pullEventRaw
  2.  
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. print("Select your OS")
  6. os = read('*')
  7. print("Select "..os.."'s Version!")
  8. ver = read('*')
  9. if os == "synth" then
  10. if ver == "sBuild3" then
  11. print("correct!")
  12. else
  13. os.reboot()
  14. end
  15. else
  16. os.reboot()
  17. end