RE: [Request] Script to make sent messages gradient
Here's a snippet from a script I wrote to randomize the gradient upon sending. Note that, depending on your background picture, this can be difficult to see.
//Global variable
var c_max = 99;
function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
var c1 = Math.floor(Math.random() * c_max);
var c2 = Math.floor(Math.random() * c_max);
return('[c=' + c1 + ']' + Message + '[/c=' + c2 + ']');
}
|