chipmunkbot3/plugins/fancyMsg.js

16 lines
386 B
JavaScript
Raw Normal View History

2024-02-11 21:23:41 -05:00
function inject (bot) {
bot.fancyMsg = function (rank, username, message) {
bot.tellraw([
2024-02-11 21:23:41 -05:00
{ text: '', color: 'gray' },
{ text: '[', color: 'dark_gray' },
rank,
{ text: '] ', color: 'dark_gray' },
2024-04-02 17:53:10 -04:00
[{ text: '', ...bot.styles.secondary }, username],
2024-02-11 21:23:41 -05:00
{ text: ' ', color: 'dark_gray' },
message
], '@a')
2024-02-11 21:23:41 -05:00
}
}
2024-02-29 20:39:21 -05:00
module.exports = inject