为什么我的 discord 机器人代码没有 运行 任何东西?
Why is my discord bot code not running anything?
好的,所以我想为我的第一个 python 项目制作一个 discord 机器人。然而,尽管我的代码看似正确,但机器人并没有 运行:
我使用这个基本代码只是让机器人上线,但没有任何反应。我也没有看到其他人有这个问题。
import discord
from discord.ext import commands
client = commands.Bot(command_prefix = '.')
@client.event
async def on_ready():
print("Bot is ready")
client.run("Token") # i removed the token for security
这是程序的结果
我是不是做错了什么?
我正在使用这个版本的 discord botting API: https://github.com/Rapptz/discord.py
正如@jwjhdev 所说,client.run
不应该在 on_ready
下标记。如果您删除该选项卡,那么一切都应该完美无缺。
好的,所以我想为我的第一个 python 项目制作一个 discord 机器人。然而,尽管我的代码看似正确,但机器人并没有 运行:
我使用这个基本代码只是让机器人上线,但没有任何反应。我也没有看到其他人有这个问题。
import discord
from discord.ext import commands
client = commands.Bot(command_prefix = '.')
@client.event
async def on_ready():
print("Bot is ready")
client.run("Token") # i removed the token for security
这是程序的结果
我是不是做错了什么?
我正在使用这个版本的 discord botting API: https://github.com/Rapptz/discord.py
正如@jwjhdev 所说,client.run
不应该在 on_ready
下标记。如果您删除该选项卡,那么一切都应该完美无缺。