Notice
Recent Posts
Recent Comments
Link
반응형
목록command (1)
변명은 만개 결과는 한개
[Discord] bot.command 와 on_message 같이쓰기
결론은 포스트 최하단에 있습니다 :) 서론 처음에 디스코드 python 봇 코드를 본 뒤 조금 만지작 거리다 의아했던점은 @bot.command() 와 @bot.event 의 on_message 이벤트는 같이 쓰지 못하는걸까? 였다. 그도 그럴것이, 1 2 3 4 5 6 7 8 9 @bot.command() async def ABC(ctx): print("ABC 커맨드 호출 :)") pass @bot.event async def on_message(message): print("on_message 이벤트 호출 :)") pass cs 일때, ABC 커맨드는 호출되지 않고 on_message 이벤트만 호출되었기 때문이다. 아니면, @bot.command() 와 @bot.event 가 양립하지 못하는건가? ㅎ..
공부/Discord
2020. 9. 3. 02:27