arattigimda sadece spam botlari cikiyor karsimaGoogle'de arastirabilirsin çıkar karşına![]()
ChatGPT üstünden kendin yazdırabilirsin.owo için 5 saniye aralıklarla owos all ve owo cf all yazıcak bir bot gibi bir şey istiyorum böyle bir uygulama var mı yada nasıl yapabilirim.
import discord
from discord.ext import commands
TOKEN = "YOUR_DISCORD_BOT_TOKEN"
PREFIX = "!" # Set your preferred bot prefix
intents = discord.Intents.default()
intents.typing = False
intents.presences = False
bot = commands.Bot(command_prefix=PREFIX, intents=intents)
@bot.event
async def on_ready():
print(f"I am connected as {bot.user}. I can now do anything you command.")
@bot.command()
async def send_message(ctx):
await ctx.send("w cf all, w s all")
bot.run(TOKEN)