Guest User

startup

a guest
Nov 6th, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. --CCBoot by Maccraft123
  2.  
  3. --Functions:
  4.  
  5. function SetUp()
  6.     term.setBackgroundColor(colors.black)
  7.     term.clear()
  8.  term.setCursorPos(1,1)
  9.  print(" CCBoot")
  10.     print(" Choose An OS:")
  11.     print("1: CraftOS")
  12.     write("OS Choice: ")
  13.     choice = read()
  14.  if choice == 1 then
  15.         shell.run("/rom/programs/shell")
  16.  end
  17. end
  18.  
  19. SetUp()
Advertisement
Add Comment
Please, Sign In to add comment