botvX_mjs/commands/netmsg.mjs

44 lines
976 B
JavaScript

import { bot } from '../index.mjs'
import { getMessage } from '../util/lang.mjs'
export default {
execute: (c) => {
if (c.bot.host && c.bot.host.options.hidden) {
c.reply({
text: getMessage(c.lang, 'command.netmsg.disabled'),
color: c.colors.secondary
})
return
}
const json = {
translate: '[%s] %s: %s',
with: [
{
translate: '%s:%s',
with: [
{
text: c.host,
color: c.colors.primary
},
{
text: c.port + '',
color: c.colors.primary
}
],
color: c.colors.secondary
},
{
text: c.username,
color: c.colors.primary
},
{
text: c.args.join(' ')
}
],
color: 'white'
}
for (const i in bot) {
if (bot[i].host.options.hidden) continue
bot[i].tellraw('@a', json)
}
}
}