chomens-bot-js/commands/executebypass.js

12 lines
384 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
module.exports = {
name: 'executebypass',
alias: [],
description: 'Execute command bypassed',
usage: '<hash> <command>',
trusted: 1,
2022-11-27 02:35:28 -05:00
execute: function (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
bot.core.run('minecraft:execute unless entity @s[name= run ] run ' + args.slice(1).join(' '))
}
}