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