View difference between Paste ID: 3hLUkTeX and LCy76Jbm
SHOW: | | - or go back to the newest paste.
1
term.clear()
2
term.setCursorPos(1,1)
3
4
if fs.exists("OS/.computer") == true then
5
  shell.run("OS/.osprotect")
6
 if fs.exists("OS/.oslock") == true then
7
   shell.run("OS/.oslock")
8
 else
9
   shell.run("OS/.computer")
10
 end
11
else
12
 if turtle then
13-
   print("Frozen OS is not for turtles. Please install on a computer.")
13+
   shell.run("disk/install")
14
 else 
15-
  shell.run("disk/install")
15+
   print("Frozen OS is not for turtles.")
16
   print("Please install on a computer.")
17
 end
18
end