Can some1 help me? It looks pretty easy if you know how! But then again...
From this:
[User:SendData("----------- "..arg.." is from "..C.." and have CountryCode ["..CC.."]" "----------- SearchTime: "..string.format("%3.2f",(os.clock()-T)).." sec."..) return 1
end;
I get this error:
151: `)' expected (to close `(' at line 150) near `"----------- SearchTime: "'
Thanks
From ..) before return 1 remove ..
:D
But really!
Removed the last .. but still have the same error
151: `)' expected (to close `(' at line 150) near `"----------- SearchTime: "'
User:SendData("----------- "..arg.." is from "..C.." and have CountryCode ["..CC.."] ----------- SearchTime: "..string.format("%3.2f",(os.clock()-T)).." sec.") return 1
end;
Is this also correct?
User:SendData(" "..arg.." is from "..C.." and have CountryCode " ..CC.. "----------- SearchTime: "..string.format("%3.2f",(os.clock()-T)).." sec.") return 1 end;
Removed the brackets
Thanks
Yes. Anything between " and " can be changed, only rule is: don't put there a third "!
:P