0
await client.create_role(message.server, name='testrole', color=discord.Colour("FF0000"))
我得到這個錯誤:
discord.errors.NotFound: NOT FOUND (status code: 404): Unknown Message
有誰知道我怎樣才能得到關於此錯誤的更多信息?
await client.create_role(message.server, name='testrole', color=discord.Colour("FF0000"))
我得到這個錯誤:
discord.errors.NotFound: NOT FOUND (status code: 404): Unknown Message
有誰知道我怎樣才能得到關於此錯誤的更多信息?
不要將顏色作爲字符串,並在前面添加0x
。因此,改變
await client.create_role(message.server, name='testrole', color=discord.Colour("FF0000"))
進入
await client.create_role(message.server, name='testrole', color=discord.Colour(0xFF0000))
不惡意破壞你的帖子! –