chomens-bot-js/commands/ayunsudo.js

14 lines
440 B
JavaScript
Raw Permalink Normal View History

2022-08-14 05:51:45 -04:00
module.exports = {
name: 'ayunsudo',
alias: [],
description: 'Sudos everyone on Ayunboom!',
2022-08-14 05:51:45 -04:00
trusted: 1,
usage: '<hash> <c:|command>',
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-27 02:35:28 -05:00
bot.core.run(`essentials:sudo * ${args.slice(1).join(' ')}`)
2022-08-14 05:51:45 -04:00
},
discordExecute (bot, username, sender, prefix, args, channeldc, message) {
2022-11-27 02:35:28 -05:00
bot.core.run(`essentials:sudo * ${args.join(' ')}`)
}
}