When this runs:
if (Title != "") {
Server.s.Log("title found: " + Title);
if (TitleColor != "") {
NameTitle = "[" + TitleColor + Title + NameColor + "]";
} else {
NameTitle = "[" + Title + "]";
}
} else {
NameTitle = "";
}
It thinks that the title has a value, when in fact, the title is most definitely just “”, help me please?
You may be confusing an empty string with a null value. Try this:
or this:
depending on your needs.