我正在和朋友一起为我的私人不和谐服务器制作一个机器人,我们喜欢星球大战,所以我称之为达斯维德。我一直在看教程,使用这个机器人我已经做得很好,但我被困在一个命令上。此命令称为forcechoke
. 它的作用是在聊天中添加一条消息:
Darth Vader:Forcechokes @fakeplayer (时间以秒为单位)。 我在文件夹中包含我所有代码的附件(Darth Vader 窒息某人)。
基本上,它会将该人静音 60 秒,然后显示达斯维达正在窒息某人。命令:!forcechoke <@person> <time in seconds>
. 我已经!forcechoke
完成了,你只需要看看。
const commando = require('discord.js-commando');
class ForceChokeCommand extends commando.Command
{
constructor(client)
{
super(client,{
name: 'forcechoke',
group: 'sith',
memberName: 'forcechoke',
description: 'Darth Vader will choke the person of your choice!',
args: [
{
key: 'user',
prompt: 'Who would you like me to forcechoke?',
type: 'user'
}
]
});
}
// THIS IS WHERE I NEED HELP
}
}
module.exports = ForceChokeCommand;
另外,如果我需要 npm 安装,请告诉我。