CIRCChannel.ctcp Member

Syntax

object.ctcp(code, msg, type);

Arguments

ArgumentSummary
code
msg
type

Returns

Remarks

See Also

Source Code

function chan_ctcpto (code, msg, type)
{
msg = msg || "";
type = type || "PRIVMSG";
this.parent.ctcpTo(this.encodedName, fromUnicode(code, this),
fromUnicode(msg, this), type);
}