Advertisement
Guest User

Untitled

a guest
Mar 31st, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.71 KB | None | 0 0
  1. unction comp()
  2.         -- Use fs.isDir to check if the two directories exist
  3.         -- If not, then only make the directories.
  4.         if not fs.isDir( 'account' ) then fs.makeDir( 'account' ) end
  5.         if not fs.isDir( 'cookies' ) then fs.makeDir( 'cookies' ) end
  6.        
  7.         -- Set a local variable, side, which is nil
  8.         local side
  9.         print("Detecting Disk Drives...")
  10.         print("Please Wait")
  11.         sleep(3)
  12.        
  13.         -- rs.getSides() returns this:
  14.         -- { 'right', 'left', 'top', 'bottom', 'back', 'front' }
  15.         -- basic table with all available sides
  16.         -- this for loop iterates through all the sides and checks
  17.         -- if there is a drive on a side, if there is, it sets side
  18.         -- to the corresponding side, and breaking the loop
  19.         for _, s in pairs( rs.getSides() ) do
  20.                 if peripheral.getType( s ) == 'drive' then
  21.                         side = s
  22.                         break
  23.                 end
  24.         end
  25.        
  26.         -- if side then checks to see if side is not nil (which means
  27.         -- that there is a drive on some side)
  28.         -- then it checks if that side is NOT on the front, only then
  29.         -- it will open the cookies/disk file and write the correct side
  30.         if side then
  31.                 if side ~= 'front' then
  32.                         local file = fs.open("cookies/disk", "w")
  33.                         file.write( side )
  34.                         file.close()
  35.                 else
  36.                         print( 'Disk Drive is not allowed on the\nfront of the computer' )
  37.                 end
  38.         else
  39.                 print( 'No disk drive detected.\nPlease install one' )
  40.         end
  41. end
  42.  
  43. comp()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement