我正在用不和的手法制造一个新的不和谐的机器人,我希望与使用我的机器人的人交往。 例如,我将打上“/mention @myfirend”的字句,然后由我的机器人回答“Lexspe提到@myLG”。 但是,如果没有提及的话,机器人将回答“你应当提及”的问题。
我没有这样的想法,因此我要求翻案,并说,如果你想要用刀子来做,你应该使用不同的图书馆,但我对其他图书馆没有想法,因此我再次问,复印机开始提供 st的回答,其中有许多错误,我想在这里问你。
此外,我还搜索了许多论坛,但所有论坛都不是关于闪电的论坛,因此我仍然不知道如何核对信息。
我的守则如下:
import discord
from discord import app_commands
from discord.ext import commands
bot = commands.Bot(command_prefix="!", intents=discord.Intents.default(), activity=discord.Game(name= with arda ))
@bot.event
async def on_ready():
print("started")
try:
synced = await bot.tree.sync()
print(f"Synced {len(synced)} commands(s)")
except Exception as e:
print(e)
@bot.tree.command(name = "gizli")
async def sa(interaction: discord.Interaction):
await interaction.response.send_message(f"as {interaction.user.mention}, slash komudu calisti ezzzzz", ephemeral=True)
@bot.tree.command(name = "ping")
@app_commands.describe(kimi = "say something")
async def say(interaction: discord.Interaction, kimi: str):
await interaction.response.send_message(f"{interaction.user.mention} mentioned {kimi}")
@bot.tree.command(name = "say")
@app_commands.describe(message = "say something")
async def say(interaction: discord.Interaction, message: str):
await interaction.response.send_message(f"{interaction.user.mention} said {message}")
bot.run("token")
我做了一些这样的事情,但正如我所说的那样,当有人使用“/选择”时,我怎么能够核对信息?