Event: OnSendNotice(to,message,handle)
Syntax: OnSendNotice(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 notice 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 OnSendNotice(to,message,handle)
{
ole.SetOutput("* Notice to "+to+": "+message);
}


Home|Scripting