60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
|
const CommandError = require('../CommandModules/command_error.js')
|
||
|
module.exports = {
|
||
|
name: 'netmsg',
|
||
|
description:['send a message to other servers'],
|
||
|
hashOnly:false,
|
||
|
consoleOnly:false,
|
||
|
ownerOnly:false,
|
||
|
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
|
||
|
*/
|