-5
var Eris = require('eris')
var bot = new Eris("########")                        

bot.on("ready", () =>(
    console.log("to vivo pai ihihihi")
));

bot.on("messageCreate"), (msg) => (
    if(msg.content.indexof(!ajuda) == 0) {
        bot.createmessage(msg.channel.id, "123")
    }
)); 

bot.connect()

我是 javascript 的新手,我遇到了这个错误,有人可以帮我吗?(我正在使用 eris) PS:“new Eris("########")”应该是一个令牌,但我审查了他

4

1 回答 1

2

当它应该是箭头函数的花括号时,您正在使用括号:

bot.on("messageCreate"), (msg) => { // <--- curly brace, not parens
    if(msg.content.indexof(!ajuda) == 0) {
        bot.createmessage(msg.channel.id, "123")
    }
}); // <---- again, curly brace, not parens
于 2020-08-13T14:43:45.387 回答