2023-12-17 14:55:27 -05:00
|
|
|
const CommandError = require('../CommandModules/command_error.js')
|
|
|
|
module.exports = {
|
|
|
|
name: 'netmsg',
|
|
|
|
description:['send a message to other servers'],
|
2023-12-20 11:54:03 -05:00
|
|
|
trustLevel: 0,
|
2023-12-17 14:55:27 -05:00
|
|
|
aliases:['networkmessage', 'netmessage', 'networkmsg'],
|
|
|
|
execute (context) {
|
|
|
|
|
|
|
|
const message = context.arguments.join(' ')
|
|
|
|
const args = context.arguments
|
|
|
|
const bot = context.bot
|
|
|
|
|
|
|
|
//throw new CommandError('ohio')
|
|
|
|
const component = {
|
|
|
|
translate: '[%s] [%s] %s \u203a %s',
|
|
|
|
with: [
|
|
|
|
{
|
|
|
|
translate: '%s%s%s',
|
|
|
|
bold:false,
|
|
|
|
with: [
|
|
|
|
{
|
|
|
|
text: 'FNF',
|
|
|
|
bold: true,
|
|
|
|
color: 'dark_purple'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Boyfriend',
|
|
|
|
bold: true,
|
|
|
|
color: 'aqua'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Bot',
|
|
|
|
bold: true,
|
|
|
|
color: 'dark_red'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
clickEvent: bot.options.Core.customName ? { action: 'open_url', value: bot.options.Core.customName } : undefined,
|
|
|
|
hoverEvent: { action: 'show_text', contents: `idfk what to put here` }
|
|
|
|
},
|
|
|
|
bot.options.host + ':' + bot.options.port,
|
|
|
|
|
|
|
|
context.source.player.displayName ?? context.source.player.profile.name,
|
|
|
|
message
|
|
|
|
]//command.split(' ')[0]
|
|
|
|
}//string.replace()
|
|
|
|
if (!message[0]) {
|
|
|
|
context.source.sendFeedback({text:'Message is empty', color:'red'}, false)
|
|
|
|
} else {
|
|
|
|
for (const eachBot of bot.bots) eachBot.tellraw(component)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
bot.options.host + ':' + bot.options.port,
|
|
|
|
context.source.player.displayName ?? context.source.player.profile.name,
|
|
|
|
message
|
|
|
|
[%s%s%s] [%s] %s \u203a %s
|
|
|
|
*/
|