couldn't figure out much from that... tried using it, but I cannot write those characters in the script so I have no way of searching through the string which holds the nickname in an attempt to replace the symbols by something else.
here is the code:
code:
function AddLineToFile (file, line) {
if (!fsObj.FileExists(MsgPlus.ScriptFilesPath + '\\' + file))
var fileObj = fsObj.OpenTextFile(MsgPlus.ScriptFilesPath + '\\' + file, 2, 1);
else
var fileObj = fsObj.OpenTextFile(MsgPlus.ScriptFilesPath + '\\' + file, 8, 0);
fileObj.WriteLine(line);
fileObj.Close();
}
I'm starting to think it is not possible to do this. Since scripts doesn't support these characters, how could it possibly save them?