CIRCChannel.invite Member

Invites a user to a channel.

Syntax

object.invite(nick);

Arguments

ArgumentSummary
nick the user name to invite.

Returns

Remarks

See Also

Source Code

function chan_inviteuser (nick)
{
var rawNick = fromUnicode(nick, this.parent);
this.parent.sendData("INVITE " + rawNick + " " + this.encodedName + "\n");
return true;
}