quote:
Originally posted by Spunky
js code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
Message = Message.split(". ");
for(var i in Message){
Message[i] = Message[i].replace(/(^\s+)/, '');
Message[i] = " " + Message[i].substring(0, 1).toUpperCase() + Message[i].substring(1);
}
return Message.join(". ");
}
You will want to add spaces after the ".". The current code will turn "..." into ". . . ".