所以我正在用 Python 编写一个不和谐的机器人,我想获取我之前定义的消息的消息内容......使用我的代码,我只得到这个:
<Message id=1234567890 channel=<TextChannel id=1234567890 name='tests' position=6 nsfw=False news=False category_id=1234567890> type=<MessageType.default: 0> author=<Member id=1234567890 name='example' discriminator='1234' bot=False nick='name' guild=<Guild id=1234567890 name='name2' shard_id=None chunked=True member_count=5>> flags=<MessageFlags value=0>>
这是代码:
await message.channel.send('Please work:')
try:
beschreibung = await client.wait_for('message', check=definitionidefinedbefore, timeout=85.0)
except asyncio.TimeoutError:
return await message.channel.send('Too slow.')
而且我只想要消息中写的文本,而不是其他内容。
我在互联网上找不到任何东西,我几乎绝望了如果有人能帮助我将不胜感激:)