2022-02-01 11:34:51 +01:00
|
|
|
import discord
|
2022-03-07 05:01:52 +01:00
|
|
|
import asyncio
|
|
|
|
import time
|
|
|
|
import datetime
|
|
|
|
import random
|
2022-02-01 11:34:51 +01:00
|
|
|
import os
|
|
|
|
from os import system
|
|
|
|
from os import environ
|
|
|
|
from discord.ext import commands
|
2022-03-07 05:01:52 +01:00
|
|
|
from discord.commands import Option
|
|
|
|
from discord.commands import permissions
|
|
|
|
from discord.ui import InputText, Modal
|
2022-02-01 11:34:51 +01:00
|
|
|
|
2022-03-07 05:01:52 +01:00
|
|
|
intents = discord.Intents.default()
|
|
|
|
intents.members = True
|
|
|
|
intents.message_content = True
|
2022-02-01 11:34:51 +01:00
|
|
|
|
|
|
|
token = os.environ['TOKEN']
|
|
|
|
prefix = os.environ['PREFIX']
|
|
|
|
bot = commands.Bot(intents=intents, command_prefix=prefix)
|
|
|
|
|
|
|
|
@bot.event
|
2022-03-07 05:01:52 +01:00
|
|
|
async def on_connect():
|
2022-02-01 11:34:51 +01:00
|
|
|
print("Bot ready on Version %s..." % discord.__version__)
|
2022-05-19 01:37:40 +02:00
|
|
|
await bot.sync_commands(commands=[], guild_ids=[261575556708040705])
|
2022-04-16 05:14:07 +02:00
|
|
|
print("Press Ctl+c to exit now")
|
2022-02-01 11:34:51 +01:00
|
|
|
|
|
|
|
bot.run(token)
|