-
Notifications
You must be signed in to change notification settings - Fork 2
/
bot.py
74 lines (56 loc) · 2.46 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"""
MIT License
Copyright (c) 2021 deadshot
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import discord
import asyncpg
import traceback
from utils.cache import cache
from discord.ext import commands
from config import *
from discord.flags import MemberCacheFlags
async def get_prefix(bot, message):
if not message.guild:
prefix = 'w!'
elif message.guild:
prefix = bot.prefixes.get(message.guild.id) or "w!" #Just in case you dont have the prefix cached.
return commands.when_mentioned_or(prefix)(bot, message)
intents = discord.Intents.default()
intents.members=True
bot = commands.Bot(command_prefix=get_prefix,
chunk_guilds_at_startup=False,
member_cache_flags=MemberCacheFlags.from_intents(intents),
case_insensitive=True, intents=intents)
bot.color = 0xecd3a1
for e in extensions:
try:
bot.load_extension(e)
print(f'[EXTENSION] {e} was loaded successfully!')
except Exception as e:
tb = traceback.format_exception(type(e), e, e.__traceback__)
tbe = "".join(tb) + ""
print(f'[WARNING] Could not load extension {e}: {tbe}')
async def create_db_pool():
bot.db = await asyncpg.create_pool(**SQL_INFO)
print("----------------\nConnected to Database.")
QUERIES = open('database/migrate.sql', 'r').read()
await bot.db.execute(QUERIES)
print("----------------\nDatabase checkup successfull.")
await cache(bot)
bot.loop.create_task(create_db_pool())
bot.run(token)