Death, on 24 February 2014 - 12:48 AM, said:
I use dofile('.password') where .password is:
login = 'herp' pass = 'derp'c:
A better practice would be to read the file and store the values directly, line by line for example.
Password file:
herp derp
Program:
local file = fs.open('.password', 'r')
local login = file.readLine()
local pass = file.readLine()
file.close()


