here you go:
code:
// this can have multiple values... note: these are all red colour
// var color = 4;
// var color = "red";
// var color = "#ff0000";
var color = "4";
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message.substr(0,2) === ">>") return "[c="+color+"]"+Message+"[/c]";
}
just make a new script with that in it and it will change the color, and if you want to make it a different color, read the notes at the top [=