It looks like you forgot a few brackets
Hope this helps
code:
var blnEnabled = false;
function OnGetScriptCommands ()
{
commands = "<ScriptCommands>";
commands += "<Command>";
commands += "<Name>cstart</Name>";
commands += "<Description>Start Auto Colorize</Description>";
commands += "</Command>";
commands += "<Command>";
commands += "<Name>cstop</Name>";
commands += "<Description>Stop Auto Colorize</Description>";
commands += "</Command>";
commands += "</ScriptCommands>";
return commands;
}
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
switch (Message){
case "/cstart":
blnEnabled = true;
return '';
case "/cstop":
blnEnabled = false;
return '';
default:
if (blnEnabled == true){
(Message.substring(0,1) != "/")
return "/colorize "+Message;
return Message;
}
}
}