15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
function inject (bot) {
|
||
bot.fancyMsg = function (rank, username, message) {
|
||
bot.tellraw([
|
||
{ text: '', color: 'gray' },
|
||
{ text: '[', color: 'dark_gray' },
|
||
rank,
|
||
{ text: '] ', color: 'dark_gray' },
|
||
[{ text: '', ...bot.styles.secondary }, username],
|
||
{ text: ' › ', color: 'dark_gray' },
|
||
message
|
||
], '@a')
|
||
}
|
||
}
|
||
|
||
module.exports = inject
|