V1.0 working version

This commit is contained in:
Patryk Mazur
2026-04-22 01:00:59 +02:00
parent 5a9fba903d
commit 474793bcaa
5 changed files with 76 additions and 0 deletions
+17
View File
@@ -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__}")