gpt4 book ai didi

node.js - Discord Bot,为什么它保持离线状态? [小白]

转载 作者:太空宇宙 更新时间:2023-11-03 22:50:03 27 4
gpt4 key购买 nike

我关注了this tutorial

我有 3 个文件:

package.json

{
"name": "greeter-bot",
"version": "1.0.0",
"description": "My own Discord bot",
"main": "bot.js",
"author": "YOUR-NAME-HERE",
"dependencies": {}
}

auth.json

{
"token": "Abcde123blahblah"
}

bot.js

var Discord = require('discord.io');
var logger = require('winston');
var auth = require('./auth.json');
// Configure logger settings
logger.remove(logger.transports.Console);
logger.add(logger.transports.Console, {
colorize: true
});
logger.level = 'debug';
// Initialize Discord Bot
var bot = new Discord.Client({
token: auth.token,
autorun: true
});
bot.on('ready', function (evt) {
logger.info('Connected');
logger.info('Logged in as: ');
logger.info(bot.username + ' - (' + bot.id + ')');
});
bot.on('message', function (user, userID, channelID, message, evt) {
// Our bot needs to know if it will execute a command
// It will listen for messages that will start with `!`
if (message.substring(0, 1) == '!') {
var args = message.substring(1).split(' ');
var cmd = args[0];

args = args.splice(1);
switch(cmd) {
// !ping
case 'ping':
bot.sendMessage({
to: channelID,
message: 'Pong!'
});
break;
// Just add any case commands if you want to..
}
}
});

安装的依赖项:

npm install discord.io winston --save

最后,使用

node bot.js

如果我理解正确的话,应该运行我的机器人。遗憾的是它在服务器上仍然处于离线状态。我错过了什么吗?

谢谢!

最佳答案

我认为您错过了本教程的这一部分,它向您展示了如何在 auth.json 中获取 token (在 auth.json 部分下)。 'YOUR-BOT-TOKEN' 不起作用。

-----> guide

编辑:此外,OP 需要这些额外的依赖项才能使教程中的上述代码正常工作(请参阅 this github discussion ):

npm install Discord.io github:woor/discord.io#gateway_v6 winston --save

关于node.js - Discord Bot,为什么它保持离线状态? [小白],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50521655/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com