Exemplo n.º 1
0
    def __init__(self):
        Plugin.__init__(self)

        # Chat commands we will answer for.
        self.__chat_commands = {
            "bridge": {
                "keywords"      : ["bridge"],
                "description"   : "Manage bridges. Type 'bridge list' to get list of bridges configured by you.",
                "method"        : self.process
            }
        }
Exemplo n.º 2
0
    def __init__(self):
        Plugin.__init__(self)

        # Chat commands we will answer for.
        self.__chat_commands = {
            "help": {
                "keywords"      : ["help"],
                "description"   : "Show help message.",
                "method"        : self.show_help
            }
        }
Exemplo n.º 3
0
 def __init__(self):
     Plugin.__init__(self)
     self.__capabilities = []
Exemplo n.º 4
0
 def __init__(self):
     Plugin.__init__(self)
Exemplo n.º 5
0
 def __init__(self):
     Plugin.__init__(self)
     self.__nicknames = {}
Exemplo n.º 6
0
    def __init__(self):
        Plugin.__init__(self)

        self.__umodes = {}
        self.__chanmodes = {}