Files
Botator/code/code.py
2022-12-16 15:43:08 +01:00

40 lines
1.4 KiB
Python

#coucou c'est fives
# wesh wesh ici latouff
import discord # pip install pycord
from discord import Intents
import asyncio # pip install asyncio
import cogs # import the cogs
import datetime # pip install datetime
from config import debug, conn, c # import the debug function and the database connectionimport apsw # pip install apsw. ApSW is a Python interface to SQLite 3
#add the message content intent to the bot, aka discord.Intents.default() and discord.Intents.message_content
intents = discord.Intents.default()
intents.message_content = True
intents.members = True
import apsw # pip install apsw. ApSW is a Python interface to SQLite 3
# set the intents to 3276543
print(intents)
bot = discord.Bot(intents=intents, help_command=None) # create the bot
bot.add_cog(cogs.Setup(bot))
bot.add_cog(cogs.Settings(bot))
bot.add_cog(cogs.Help(bot))
bot.add_cog(cogs.Chat(bot))
bot.add_cog(cogs.ManageChat(bot))
@bot.event
async def on_ready():
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="your messages to answer you"))
debug("Bot is ready")
#run the bot
# Replace the following with your bot's token
with open("./key.txt") as f:
key = f.read()
bot.run(key)
#set the bot's watching status to watcing your messages to answer you
@bot.event
async def on_ready():
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="your messages to answer you"))
debug("Bot is ready")