2024-02-11 21:23:41 -05:00
|
|
|
|
function inject (bot) {
|
|
|
|
|
bot.fancyMsg = function (rank, username, message) {
|
2024-03-16 16:03:36 -04:00
|
|
|
|
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
|
2024-03-16 16:03:36 -04:00
|
|
|
|
], '@a')
|
2024-02-11 21:23:41 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 20:39:21 -05:00
|
|
|
|
module.exports = inject
|