11 lines
286 B
Python
11 lines
286 B
Python
import discord
|
|
from discord.ext import commands, tasks
|
|
|
|
|
|
PREFIX = 'frog!'
|
|
intents = discord.Intents.default()
|
|
intents.message_content = True
|
|
intents.guilds = True
|
|
intents.voice_states = True
|
|
LOG_CHANNEL_ID = 1425511034482982943
|
|
bot = commands.Bot(command_prefix=PREFIX, intents=intents) |