[string "gemminer"]:61: unexpected symbol
Relevant code:
Line 61 is in this case line 9.
function save()
term.clear()
term.setCursorPos(1,1)
write("Name: ")
usrName = read()
fs.makeDir("saves")
if not fs.exists("saves/"..usrName.."/money") then
file = fs.open("saves/"..usrName.."/money", "w")
file.writeLine(..money)
file.close()
if not fs.exists("saves/"..usrName.."/multiplier") then
file2 = fs.open("saves/"..usrName.."/multiplier", "w")
file2.writeLine(..multi)
file2.close()
sleep(0.5)
term.clear()
term.setCursorPos(1,1)
print("Registered!")
sleep(0.5)
term.clear()
game()
end
end
end
Thankful for help!











