Пример #1
0
def kick(chan, nick, comment=""):
    fi.quote('kick', chan, nick, comment)
Пример #2
0
def away(text=""):
    fi.quote('away', text)
Пример #3
0
def topic(channel, top=""):
    fi.quote('topic', channel, top)
Пример #4
0
def invite(nick, chan):
    fi.quote('invite', nick, chan)
Пример #5
0
def part(channel):
    fi.quote('part', channel)
Пример #6
0
def mode(channel, m, *args):
    fi.quote('mode', m, *args)
Пример #7
0
def join(channel, passwd=""):
    fi.quote('join', channel, passwd)
Пример #8
0
def nick(n):
    fi.quote('nick', n)
Пример #9
0
def ctcp2(target, cmd, args):
    cmd = mk_ctcp_req2(cmd, args)
    fi.quote('notice', target, cmd)
Пример #10
0
def notice(target, msg):
    fi.quote('notice', target, msg)
Пример #11
0
def msg(target, msg):
    fi.quote('privmsg', target, msg)