所以我在这里有这段代码:
lockskipCommand = (function(_super) {
__extends(lockskipCommand, _super);
function lockskipCommand() {
return lockskipCommand.__super__.constructor.apply(this, arguments);
}
lockskipCommand.prototype.init = function() {
this.command = '/lockskip';
this.parseType = 'exact';
return this.rankPrivelege = 'bouncer';
};
lockskipCommand.prototype.functionality = function() {
data.lockBooth();
new ModerationForceSkipService();
return setTimeout((function() {
return data.unlockBooth();
}), 4500);
};
return lockskipCommand;
})(Command);
我希望能够让它有某种冷却,所以它不能连续快速使用。我想要这个的原因是为了防止人们被跳过,因为这就是这段代码用来跳过人的。
我希望这是足够的信息来获得一些帮助。谢谢!