Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- unction comp()
- -- Use fs.isDir to check if the two directories exist
- -- If not, then only make the directories.
- if not fs.isDir( 'account' ) then fs.makeDir( 'account' ) end
- if not fs.isDir( 'cookies' ) then fs.makeDir( 'cookies' ) end
- -- Set a local variable, side, which is nil
- local side
- print("Detecting Disk Drives...")
- print("Please Wait")
- sleep(3)
- -- rs.getSides() returns this:
- -- { 'right', 'left', 'top', 'bottom', 'back', 'front' }
- -- basic table with all available sides
- -- this for loop iterates through all the sides and checks
- -- if there is a drive on a side, if there is, it sets side
- -- to the corresponding side, and breaking the loop
- for _, s in pairs( rs.getSides() ) do
- if peripheral.getType( s ) == 'drive' then
- side = s
- break
- end
- end
- -- if side then checks to see if side is not nil (which means
- -- that there is a drive on some side)
- -- then it checks if that side is NOT on the front, only then
- -- it will open the cookies/disk file and write the correct side
- if side then
- if side ~= 'front' then
- local file = fs.open("cookies/disk", "w")
- file.write( side )
- file.close()
- else
- print( 'Disk Drive is not allowed on the\nfront of the computer' )
- end
- else
- print( 'No disk drive detected.\nPlease install one' )
- end
- end
- comp()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement