Posted 24 April 2012 - 03:11 AM
I having problems in my program.
I want to readit astwodifferentvariables,whichwillcompare with thelogin andpass
I'm trying to make a login system, that reads a .txt file to make a comparison, for example: Userhere Passhere
Read user and pass, and save its on two different variables.
local sFile = "LoginePass.txt"
local hRead = assert(fs.open(sFile, "r"))
local sLogin, sPass = hRead.readLine(), hRead.readLine()
I want to readit astwodifferentvariables,whichwillcompare with thelogin andpass
I'm trying to make a login system, that reads a .txt file to make a comparison, for example: Userhere Passhere
Read user and pass, and save its on two different variables.