chipmunkbot3/plugins/fancyMsg.js

16 lines
416 B
JavaScript
Raw Normal View History

2024-02-11 21:23:41 -05:00
function inject (bot) {
bot.fancyMsg = function (rank, username, message) {
bot.core.run(`/tellraw @a ${JSON.stringify([
{ text: '', color: 'gray' },
{ text: '[', color: 'dark_gray' },
rank,
{ text: '] ', color: 'dark_gray' },
{ text: username, color: bot.colors.secondary },
{ text: ' ', color: 'dark_gray' },
message
])}`)
}
}
module.exports.bot = inject