如何使用参数制作不和谐命令?
Posted
技术标签:
【中文标题】如何使用参数制作不和谐命令?【英文标题】:How to make a discord command with arguments? 【发布时间】:2021-05-11 13:50:44 【问题描述】:我是编码和东西的新手,我想知道是否有任何教程或页面可以解决这个问题:
我想创建一个看起来像这样!acz map Lasius flavus
的不和谐命令,其中:!acz
是前缀,map
是命令,Lasius flavus
是两个参数。
Bot 以带有两个参数的链接的消息作为响应,应该如下所示:https://antmap.coc.tools/images/Lasius.flavus.png
这意味着我们会收到关于不和谐的回复,这是一张图片。
我希望能够输入我的不和谐 !acz map Genus species
- 并且机器人以 https://antmap.coc.tools/images/Genus.species.png
响应,其中 Genus 的第一个字母是大写,就像在示例中一样。
我正在添加一张我想到的图片,其中?
是前缀,map
是命令,Lasius flavus
是属物种
(不,我已经要求提供代码)
感谢您的帮助!
【问题讨论】:
有关命令的帮助请参考official Discord.py documentation。 YouTube 上也有无数视频,您可以在其中学习如何编写完全符合您需要的命令。 【参考方案1】:@bot.command(brief="Za map napiš Rod a druh a vyskočí ti mapa výskytu!")
async def map(ctx, *args):
await ctx.channel.send('https://antmap.coc.tools/images/.png '.format('.'.join(args)))
这就是方法,阅读https://www.programiz.com/python-programming/methods/string/replace 帮助了我!即使我没有使用替换()!我只需要更改发送 noarguments 和 arguments 的代码中的几部分:
@bot.command()
async def map(ctx, *args):
await ctx.channel.send(' arguments: '.format(len(args), ', '.join(args)))
【讨论】:
以上是关于如何使用参数制作不和谐命令?的主要内容,如果未能解决你的问题,请参考以下文章