gpt4 book ai didi

python - 在 message.content.find 上 Disord.py 双输出

转载 作者:行者123 更新时间:2023-12-04 09:18:06 25 4
gpt4 key购买 nike

我正在使用 discord.py 制作我自己的不和谐骰子滚轴机器人,我遇到了一点混战。
我输入时总结的d20 (这是掷 20 面骰子的命令)我得到 2 个骰子而不是一个。然而,其中有趣的部分是,当我掷出任何其他较小数字的骰子时,我会根据需要掷出一个骰子。
例子:

User: d10
Bot: 12

User: d20
Bot: 3
Bot: 16
这是有问题的代码:
import asyncio
from discord.ext import commands

@commands.Cog.listener()
async def on_message(self, message):
d4possible_responses = ['1','2', '3', '4']
d6possible_responses = ['1','2', '3', '4', '5', '6']
d8possible_responses = ['1','2', '3', '4', '5', '6', '7', '8']
d10possible_responses = ['1','2', '3', '4', '5', '6', '7', '8', '9', '10']
d20possible_responses = ['1','2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20']

if (message.guild.id == 464298877823221761) or (message.guild.id == 712143774935154689) or (message.guild.id == 540812622619082782):
if message.content.find("d4") != -1:
await message.channel.send(':game_die: `'+ random.choice(d4possible_responses)+'`')
if message.content.find("d6") != -1:
await message.channel.send(':game_die: `'+ random.choice(d6possible_responses)+'`')
if message.content.find("d8") != -1:
await message.channel.send(':game_die: `'+ random.choice(d8possible_responses)+'`')
if message.content.find("d10") != -1:
await message.channel.send(':game_die: `'+ random.choice(d10possible_responses)+'`')
if message.content.find("d20") != -1:
await message.channel.send(':game_die: `'+ random.choice(d20possible_responses)+'`')
这是整个齿轮: https://hastebin.com/mahabuluta.py

最佳答案

我写在这里作为答案 bc 没有 50 评论声誉。 ^^ - 这只是一个建议的解决方案。
就像@Tin Nguyen 说的那样,也许你之前做了一些其他的机器人,之前刚刚实现了 d20。现在 bot 的 2 个实例对“d20”命令使用react,并且您得到双输出。

我建议您重新启动电脑,因为我在代码中找不到任何问题。

关于python - 在 message.content.find 上 Disord.py 双输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63147181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com