V1.0 working version
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import discord
|
||||
|
||||
__version__ = "1.0.0"
|
||||
__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__}")
|
||||
Reference in New Issue
Block a user