shbot/clear_commands.py

28 lines
No EOL
706 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(commands=[], check_guilds=[261575556708040705])
print("Press Ctl+c to exit now")
bot.run(token)