Beispiel #1
0
 def __init__(self):
     super().__init__(max_messages=20000)
     self.aiosession = aiohttp.ClientSession(loop=self.loop)
     self.http.user_agent += ' TitanEmbeds-Bot'
     self.database = DatabaseInterface(self)
     self.command = Commands(self, self.database)
     self.socketio = SocketIOInterface(self, config["redis-uri"])
Beispiel #2
0
 def __init__(self):
     super().__init__()
     self.aiosession = aiohttp.ClientSession(loop=self.loop)
     self.http.user_agent += ' TitanEmbeds-Bot'
     self.database = DatabaseInterface(self)
     self.command = Commands(self, self.database)
     
     self.database_connected = False
     self.loop.create_task(self.send_webserver_heartbeat())
Beispiel #3
0
 def __init__(self):
     super().__init__(max_messages=20000)
     self.aiosession = aiohttp.ClientSession(loop=self.loop)
     self.http.user_agent += ' TitanEmbeds-Bot'
     self.database = DatabaseInterface(self)
     self.command = Commands(self, self.database)
     self.socketio = SocketIOInterface(self, config["redis-uri"])
     
     self.delete_list = deque(maxlen=100) # List of msg ids to prevent duplicate delete
     
     self.discordBotsOrg = None
     self.botsDiscordPw = None
Beispiel #4
0
 def __init__(self):
     super().__init__(
         max_messages=10000,
         activity=discord.Game(name="Embed your Discord server! Visit https://TitanEmbeds.com/")
     )
     self.aiosession = aiohttp.ClientSession(loop=self.loop)
     self.http.user_agent += ' TitanEmbeds-Bot'
     self.redisqueue = RedisQueue(self, config["redis-uri"])
     self.command = Commands(self, config)
     self.socketio = SocketIOInterface(self, config["redis-uri"])
     
     self.delete_list = deque(maxlen=100) # List of msg ids to prevent duplicate delete
     
     self.discordBotsOrg = None
     self.botsDiscordPw = None
 def __init__(self):
     super().__init__()
     self.aiosession = aiohttp.ClientSession(loop=self.loop)
     self.http.user_agent += ' TitanEmbeds-Bot'
     self.database = DatabaseInterface(self)
     self.command = Commands(self, self.database)