1 2 3 4 5 6 7 8 9 10 11 12 13
| @commands.command() async def sms(self, ctx): sms = discord.Embed(title = "指令", description = "忘記了嗎? 來看一下吧~~", color = 0x4599) sms.add_field(name = "!ahoy", value = "Ahoy.gif", inline = True) sms.add_field(name = "!clear", value = "用 !clear + 數字刪訊息", inline = True) sms.add_field(name = "!sms", value = "等於 == !help", inline = True) sms.add_field(name = "!games", value = "使用!games獲取更多訊息", inline = True) sms.add_field(name = "!economy", value = "使用!economy獲取更多訊息", inline = True) sms.add_field(name = "!plus", value = "訂單增加", inline = True) sms.set_thumbnail(url = "https://www.formula-ai.com/wp-content/uploads/2020/09/python_or_java_meme.jpg") await ctx.send(embed = sms)
|