import discord
from discord.ext import commands
import datetime
intents = discord.Intents.default()
intents.messages = True
intents.guilds = True
bot = commands.Bot(command_prefix='속보', intents=intents)
@bot.event
async def on_ready():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print('------')
@bot.event
async def on_error(event, *args, **kwargs):
print('An error occurred:', event)
@bot.command()
async def ping(ctx):
await ctx.channel.send('pong')
@bot.command(aliases=[")"])
async def breakingNews(ctx, *, title):
print("감지함")
date = datetime.datetime.now().strftime("%Y-%m-%d")
embed=discord.Embed(title=f"[속보] {title}", description=f"{date}({ctx.author.display_name} 기자)", color=0xE62D36)
await ctx.channel.send(embed=embed)
bot.run('tkn')
그냥 심심해서 짜본 코드인데 dm으로는 다 정상적으로 인식하고 그룹에서는 인식을 못해요(반응이 없음, prefix 뒤에 없는 명령어 입력해도 에러코드 안나옴)
디코봇 만들면서 처음 경험해본 오륜데 무엇이 문제일까요..
불러오는 중...