我创建了一个代码,通过自我机器人向服务器中的每个人发疯,但我收到了这个错误

时间:2020-12-21 08:12:45

标签: javascript node.js discord discord.js bots

ypeError: _0x3f232e[_0x209805(...)][_0x209805(...)] is not a function
    at Client.<anonymous> (C:\Users\ADVAITH\Desktop\dm\DMALL\index.js:1:5799)
    at Client.emit (events.js:315:20)
    at MessageCreateHandler.handle (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\discord.js\src\client\websocket\packets\handlers\MessageCreate.js:9:34)
    at WebSocketPacketManager.handle (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\discord.js\src\client\websocket\packets\WebSocketPacketManager.js:105:65)
    at WebSocketConnection.onPacket (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:333:35)
    at WebSocketConnection.onMessage (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:296:17)
    at WebSocket.onMessage (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\ws\lib\event-target.js:120:16)
    at WebSocket.emit (events.js:315:20)
    at Receiver.receiverOnMessage (C:\Users\ADVAITH\Desktop\dm\DMALL\node_modules\ws\lib\websocket.js:789:20)
    at Receiver.emit (events.js:315:20)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:11040) 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: 1)
(node:11040) [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.`enter code here`

这是我的错误,我得到并尝试了很多方法 t9o 解决但我失败了请帮助我

1 个答案:

答案 0 :(得分:1)

正如我在评论中提到的:

  1. discord.js 甚至不再支持自助机器人。错误是意料之中的,而且很有可能您想要做的事情已经不可能了。
  2. 正如 Elitezen 所提到的,自我机器人反对 Discord ToS。执行类似这样的操作无疑会导致您的机器人和/或您自己的帐户被 Discord 禁止
  3. 您在此处尝试执行的主要实施本质上是恶意的(例如创建垃圾邮件机器人或突袭机器人)。即使这不是您在这里尝试做的事情,也很可能是您尝试做的事情是不可能的;此外,违反您首次加入 Discord 时接受的服务条款将会产生重大后果。

简而言之,最好不要尝试以任何方式、形状或形式执行此操作。相信我,创建这个群发消息的自我机器人不值得花费时间和后果。

另请注意,无论如何我们都无法解决您的问题。您没有提供任何代码,您只给了我们一个一般性错误,我们无法解决该错误,因为我们没有您的代码。