我想让机器人在用户说话时检测到。在discord文档中,我看到我需要使用event guildMemberSpeaking。代码如下: const Discord = require('discord.js');
const client = new Discord.Client();
client.once('ready', () => {
console.log('Talkover is online!');
})
// Joins the voice channel with every tekst
client.o
试图让我的不和谐机器人通过Heroku运行起来。部署成功了,但机器人在不和谐的情况下脱机。
日志告诉我,在机器人(我命名为Giphy.py)的代码中发生了一些事情。
日志:
Starting process with command `python giphy.py`
2022-01-13T11:23:28.488578+00:00 heroku[worker.1]: State changed from starting to up
2022-01-13T11:23:28.964012+00:00 app[worker.1]: Traceback (most recent call last
当我尝试在我的discord.js机器人的控制台中运行npm时,我不知道为什么它不能工作。
(这是我的package.json)
{
"name": "spinier-bot",
"version": "1.0.0",
"description": "Moderation & utility bot with a little bit of fun sprinkled in.",
"main": "src/bot.js",
"scr