chomens-bot-js/commands/netmsg.js

46 lines
1 KiB
JavaScript
Raw Normal View History

2022-11-14 07:53:44 -05:00
/* eslint-disable max-len */
module.exports = {
name: 'netmsg',
alias: ['networkmessage', 'irc'],
description: 'Broadcasts a message to all of the servers that the bot is connected',
usage: '<message>',
trusted: 0,
2022-11-16 06:09:37 -05:00
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash) {
2022-11-14 07:53:44 -05:00
const component = [
{
text: '[',
color: 'dark_gray',
},
{
text: bot.options.host === 'kitsune.icu' ? 'kit' : bot.options.host,
2022-11-14 07:53:44 -05:00
color: 'gray',
},
bot.options.host === 'kitsune.icu' ? {
text: 'sune.icu',
color: 'gray',
} : '',
2022-11-14 07:53:44 -05:00
{
text: '] ',
color: 'dark_gray',
},
{
text: username,
color: 'gray',
},
{
text: ' \u203a ',
color: 'dark_gray',
},
{
text: args.join(' '),
color: 'gray',
},
];
const bots = bot.getBots();
bots.forEach((bot) => {
bot.tellraw('@a', component);
});
},
};