Event: OnPart(nick,channel,message,handle)
Syntax: OnPart(object nick,string channel,string message,object handle)
Event arguments
nick- the user which part
channel- the channel
message- the part message
handle- the output handler
This event is triggered when a user part a channel.
Note: You can get the host and the user of the person which part by using nick.Host
and nick.User. To edit the output text use ole.SetOutput(text,handle);. To delete
the output text use ole.DelOutput(handle);
Example:
function OnPart(nick,channel,messsage,handle)
{
ole.Msg(nick,"I hope I'll see you tomorrow on "+channel);
}