2022-10-14 04:46:41 -04:00
|
|
|
/* eslint-disable max-len */
|
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-11-16 06:41:30 -05:00
|
|
|
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
|
2022-11-23 04:24:00 -05:00
|
|
|
bot.core.run(`essentials:sudo * ${args.slice(1).join(' ')}`);
|
2022-08-14 05:51:45 -04:00
|
|
|
},
|
2022-10-14 04:46:41 -04:00
|
|
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc, message) {
|
2022-11-23 06:10:45 -05:00
|
|
|
bot.core.run(`essentials:sudo * ${args.join(' ')}`);
|
2022-10-14 04:46:41 -04:00
|
|
|
},
|
2022-08-14 05:51:45 -04:00
|
|
|
};
|