所以基本上我想在控制台中重新创建每个不和谐的通道
import discord
from discord.ext import commands
b = commands.Bot(command_prefix = ".")
b.remove_command("help")
@b.event
async def on_message():
print("What ever message the user sent")
b.run('token')
每当用户发送一条消息时,该消息将被复制到控制台。这可能吗?另外,是否可以查看发送了哪些用户以及发送到哪个频道?我知道您可以获得频道ID和作者ID,但是频道名称和用户名又如何呢?
答案 0 :(得分:1)
@b.event
async def on_message(message):
await b.process_commands(message)
print(f"{message.author} in {message.channel} : {message.content}")
这应该给您发送者的消息以及消息的来源。