我的机器人不会联机,即使我重新生成令牌也是如此。我试图放一个捕获块,但没有任何变化。问题是我的电脑吗 ? 脚本 ?还是我的节点版本(最后一个 LTS 版本)?我希望你有时间回答我!这是错误: (node:1976) UnhandledPromiseRejectionWarning: Error: Incorrect login details were provided. at WebSocketConnection.<anonymous> (C:\Users\Atelier34bc\Documents\mpbot\node_modules\discord.js\src\client\ClientManager.js:48:41) at Object.onceWrapper (events.js:417:26) at WebSocketConnection.emit (events.js:310:20) at WebSocketConnection.onClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:390:10) at WebSocket.onClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\event-target.js:124:16) at WebSocket.emit (events.js:310:20) at WebSocket.emitClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\websocket.js:191:10) at TLSSocket.socketOnClose (C:\Users\Atelier34bc\Documents\mpbot\node_modules\ws\lib\websocket.js:850:15) at TLSSocket.emit (events.js:322:22) at net.js:672:12(node:1976) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)(node:1976) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.这是我的脚本:const bot = new Discord.Client()const PREFIX = "$"const token = 'my_token'bot.on('ready', () => { console.log('bot is online')})
添加回答
举报
0/150
提交
取消