Advertisement
Guest User

Untitled

a guest
Sep 8th, 2012
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. --Declare Variable
  2. local loc = "/UID"
  3.  
  4. --declare funtions
  5. function readFile()
  6. if fs.exists(loc) then
  7.   local tFile = fs.open(loc,"r")
  8.   local contents = tFile.readAll()
  9.   tFile.close()
  10.   local lines = {}
  11.   local maximum = 1
  12.   if contents then
  13.    for i = 0, maximum do
  14.         lines[i] = contents.readline()
  15.         print lines[i]
  16.         maximum = maximum + 1
  17.         if lines[i] == nil
  18.             break
  19.         end
  20.    end
  21.   end
  22. end
  23. end
  24. --Run functions
  25. readFile()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement