27 lines
No EOL
663 B
Python
27 lines
No EOL
663 B
Python
import discord
|
|
import asyncio
|
|
import time
|
|
import datetime
|
|
import random
|
|
import os
|
|
from os import system
|
|
from os import environ
|
|
from discord.ext import commands
|
|
from discord.commands import Option
|
|
from discord.commands import permissions
|
|
from discord.ui import InputText, Modal
|
|
|
|
intents = discord.Intents.default()
|
|
intents.members = True
|
|
intents.message_content = True
|
|
|
|
token = os.environ['TOKEN']
|
|
prefix = os.environ['PREFIX']
|
|
bot = commands.Bot(intents=intents, command_prefix=prefix)
|
|
|
|
@bot.event
|
|
async def on_connect():
|
|
print("Bot ready on Version %s..." % discord.__version__)
|
|
await bot.sync_commands(unregister_guilds=[261575556708040705])
|
|
|
|
bot.run(token) |