我执行了此命令来邀请我的机器人到其他服务器,它发送了一系列的机器人邀请和支持服务器。我想将实际链接更改为超链接,例如可点击的邮件, 例如:“邀请我!”它将显示为蓝色,您可以单击它以转到链接。这是命令
@commands.cooldown(rate=1, per=10.5, type=commands.BucketType.user)
@commands.command(aliases=['joinme', 'botinvite', 'kek'])
async def invite(self, ctx):
""" Invite me to your server """
try:
await ctx.message.delete()
except:
pass
embed = discord.Embed(color=ctx.author.color, timestamp=ctx.message.created_at)
embed.set_author(
name=ctx.bot.user.name, icon_url=ctx.bot.user.avatar_url_as(static_format="png")
)
embed.set_thumbnail(url=ctx.bot.user.avatar_url_as(static_format="png"))
embed.add_field(
name="Bot Invite",
value="https://discord.com/api/oauth2/authorize?client_id=723726581864071178&permissions=1576533239&scope=bot")
embed.add_field(
name=f"Support Server",
value="https://discord.gg/cNRNeaX")
embed.set_thumbnail(url=ctx.author.avatar_url)
try:
await ctx.send(embed=embed)
except Exception as err:
await ctx.send(err)
答案 0 :(得分:2)
在嵌入中,您应该可以使用markdown。
Click [here] (discord.gg/CODE)to join my awesome server!