我怎样才能制作一个不和谐的货币系统 and/or 音乐机器人?

How can I make a discord currency system and/or music bot?

[post 已编辑]

如何使用 python 创建一个不和谐的货币系统 and/or 我如何为音乐机器人下载 FFmpeg 东西,因为我不知道安装后要做什么。

首先,你需要把它们放到同一个python文件中

import discord
from discord.ext import commands
client = commands.Bot(command_prefix="$")

@client.command ()
async def repeat (ctx, arg):
        await ctx.send(arg)

@client.event
async def on_message (message):
        message.content = message.content.lower()
        if message.author == client.user:
                return
        if message.content.startswith("$hello"):
                if str(message.author) == "NAME":
                        await message.channel.send ("Hello" + str(message.author) + "!")
                else:
                        await message.channel.send("Hello!!")


client.run('TOKEN')

那要看你所说的“一起努力”是什么意思了。如果您需要机器人分别回答 $hello$repeat,代码已经很好了。