Event: OnSendMsg(to,message,handle)
Syntax: OnSendMsg(string to,string message,object handle)
Event arguments
to- the destination. This can be a channel or a nickname
message- the message
handle- the output handler
This event is triggered when you send a message to a channel or to a nickname.
Note: To edit the output text use ole.SetOutput(text,handle);. To delete
the output text use ole.DelOutput(handle);
Example:
function OnSendMsg(to,message,handle)
{
ole.SetOutput("I said: "+message,handle);
}