18 lines
440 B
Python
18 lines
440 B
Python
import discord
|
|
|
|
__version__ = '1.0.3'
|
|
__author__ = 'Kartoniarz'
|
|
|
|
|
|
class Bot(discord.Bot):
|
|
def __init__(self):
|
|
intents = discord.Intents.default()
|
|
intents.message_content = True
|
|
intents.members = True
|
|
|
|
super().__init__(intents=intents)
|
|
|
|
async def on_ready(self):
|
|
print(f'Zalogowano jako {self.user} (ID: {self.user.id})')
|
|
print(f' Pycord {discord.__version__} | Bot v{__version__}')
|