Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Declare Variable
- local loc = "/UID"
- --declare funtions
- function readFile()
- if fs.exists(loc) then
- local tFile = fs.open(loc,"r")
- local contents = tFile.readAll()
- tFile.close()
- local lines = {}
- local maximum = 1
- if contents then
- for i = 0, maximum do
- lines[i] = contents.readline()
- print lines[i]
- maximum = maximum + 1
- if lines[i] == nil
- break
- end
- end
- end
- end
- end
- --Run functions
- readFile()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement