Discord.js 发送消息到特定频道
2020-08-16
602
我想创建一个轮询命令,但无法让它向特定频道发送消息 这是我的代码:
const { tprefix, pollchannel } = require('../config.json');
const Discord = require('discord.js');
const client = new Discord.Client();
module.exports = {
name: 'poll',
description: 'can make polls',
cooldown: 5,
usage: '[ask] [emoji1] [emoji 2]',
aliases: ['createpoll'],
async execute(message) {
const channel = message.client.channels.fetch(pollchannel);
message.channel.send('you have 60 seconds.');
// await new Promise((resolve) => setTimeout(resolve, 60000));
channel.client.send(`${tprefix} message`);
message.channel.send('finished');
},
};
它应该发送一条消息“您有 60 秒的时间。”,然后等待 60 秒,然后在轮询频道和当前频道上发送一条消息。频道 ID 是正确的,并记录在 config.json 中
1个回答
使用:
const channel = message.client.channels.cache.get(pollchannel)
channel.send('hello')
Lioness100
2020-08-16