chomens-bot-js/commands/executebypass.js
2022-11-16 18:09:37 +07:00

15 lines
464 B
JavaScript

/* eslint-disable max-len */
module.exports = {
name: 'executebypass',
alias: [],
description: 'Execute command bypassed',
usage: '<hash> <command>',
trusted: 1,
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash) {
if (args[0] === hash) {
bot.core.run('minecraft:execute unless entity @s[name= run ] run ' + args.slice(1).join(' '));
} else {
throw new Error('Invalid hash');
}
},
};