我拥有一个节点twitch机器人,我想让它的mod可以做!timeout @(user)
设置600秒的聊天超时。这怎么能做到呢?
下面是我目前拥有的一些代码:
client.on("message", (channel, user, message, self) => {
if (self) return;
if(message === "!timeout" && user.mod === true){
client.say (channel, `/timeout @${user.id} 100000`);
}
});
1条答案
按热度按时间uxhixvfz1#
你的代码当前读到的是当一个版主键入!它将自己超时,您需要为消息设置ARGS以接受用户名