def kick(chan, nick, comment=""): fi.quote('kick', chan, nick, comment)
def away(text=""): fi.quote('away', text)
def topic(channel, top=""): fi.quote('topic', channel, top)
def invite(nick, chan): fi.quote('invite', nick, chan)
def part(channel): fi.quote('part', channel)
def mode(channel, m, *args): fi.quote('mode', m, *args)
def join(channel, passwd=""): fi.quote('join', channel, passwd)
def nick(n): fi.quote('nick', n)
def ctcp2(target, cmd, args): cmd = mk_ctcp_req2(cmd, args) fi.quote('notice', target, cmd)
def notice(target, msg): fi.quote('notice', target, msg)
def msg(target, msg): fi.quote('privmsg', target, msg)