mirror of
https://github.com/SamSanai/VoiceMaster-Discord-Bot.git
synced 2024-11-22 01:45:32 +01:00
34 lines
874 B
Python
34 lines
874 B
Python
import discord
|
|
from discord.ext import commands
|
|
import traceback
|
|
import sys
|
|
|
|
intents = discord.Intents.default()
|
|
#Message content intent needs to be enabled in the developer portal for your chosen bot.
|
|
intents.message_content = True
|
|
|
|
bot = commands.Bot(command_prefix=".", intents=intents)
|
|
|
|
bot.remove_command("help")
|
|
|
|
DISCORD_TOKEN = 'Enter Discord Token here'
|
|
|
|
initial_extensions = ['cogs.voice']
|
|
|
|
@bot.event
|
|
async def on_ready():
|
|
print('Logged in as')
|
|
print(bot.user.name)
|
|
print(bot.user.id)
|
|
print('------')
|
|
|
|
for extension in initial_extensions:
|
|
try:
|
|
await bot.load_extension(extension)
|
|
print(f'Loaded {extension}')
|
|
except Exception as e:
|
|
print(f'Failed to load extension {extension}.', file=sys.stderr)
|
|
traceback.print_exc()
|
|
|
|
bot.run(DISCORD_TOKEN)
|