of     1   

blox6137
#139506433Monday, July 07, 2014 5:47 AM GMT

This isn't working. My error will be posted at the bottom. io.write("Enter your username: ") username = io.read() io.write("Enter your pazz: ") pazz = io.read() if username == "blox" then username = true end if pazz == "swagyolo" then --not real pazz so dont get hopes up :P pazz = true end if username and pazz == true then print("Hello," .. username .. "!") end error: attempt to concatenate global 'username' (a boolean value) System32? Delete it.
Sasayaki
#139506528Monday, July 07, 2014 5:48 AM GMT

*facepalm* >username = true
blox6137
#139506581Monday, July 07, 2014 5:49 AM GMT

It'd be useful if you actually edited the script so I could see where I messed up. System32? Delete it.
Sasayaki
#139506787Monday, July 07, 2014 5:52 AM GMT

io.write("Enter your username: ") username = io.read() io.write("Enter your pazz: ") pazz = io.read() if username == "blox" then usernameIsOk = true end if pazz == "swagyolo" then --not real pazz so dont get hopes up :P pazzIsOk = true end if usernameIsOk and pazzIsOk then print("Hello," .. username .. "!") end
blox6137
#139507041Monday, July 07, 2014 5:55 AM GMT

Oh, I remember learning that. *facepalm* Thanks for the help System32? Delete it.

    of     1