创建后如何让Discord机器人将消息发送到特定渠道?

时间:2020-09-01 11:36:29

标签: discord discord.js

我正在制作一个对特定对象有反应的机器人,它将创建一个频道... 一切正常,我希望在创建具有特定起点的通道时能发布一个想法。

client.on('channelCreate', (channel, message) => {
    if(channel.name.startsWith('ticket-')){
        message.channel.send('test');
});

我没有收到任何错误,什么也没有...

1 个答案:

答案 0 :(得分:0)

您不能在 @Override protected void attachBaseContext(Context newBase) { super.attachBaseContext(ViewPumpContextWrapper.wrap(Restring.wrapContext(newBase))); } @Override public Resources getResources() { return Restring.wrapContext(getBaseContext()).getResources(); } 事件中使用message变量。您唯一收到的是一个channelCreate对象,因此您需要使用channel

channel.send()