猿问

Python/Discord 当我尝试让 python 获取不和谐用户的用户 ID 时,它什么也不做

这是使用 userID 的代码:


if message.content == "MMO start":

    dir = r'C:\\Users\\User\Desktop\MMOProfiles'

    MessageAuthor = str(userID)

    newpath = os.path.join(dir,MessageAuthor)

    doesExist = os.path.exists(newpath)

    if doesExist == False:

        await message.channel.send("Creating profile")

        os.makedirs(newpath)

    if doesExist == True:

        await message.channel.send("You already have a profile")

这是定义 userID 的函数:


async def UserID(ctx):

    userID = ctx.author.id


慕村9548890
浏览 102回答 1
1回答

沧海一幻觉

用户 ID 已在userID您可以键入print(userID)以在终端中查看的内部。
随时随地看视频慕课网APP

相关分类

Python
我要回答