mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
32 lines
791 B
JavaScript
32 lines
791 B
JavaScript
/* eslint-disable require-jsdoc */
|
|
function inject(bot, client, targetClient) {
|
|
const {MessageBuilder} = require('prismarine-chat')(bot.version);
|
|
client.on('packet', (data, meta) => {
|
|
if (meta.name === 'chat' &&
|
|
!data.message?.startsWith('/') &&
|
|
!data.message?.startsWith('.')
|
|
) {
|
|
bot.tellraw('@a', {
|
|
color: 'dark_gray',
|
|
translate: '[%s] [%s] %s \u203a %s',
|
|
with: [
|
|
{
|
|
text: 'Chat',
|
|
color: 'gray',
|
|
},
|
|
{
|
|
text: 'Proxy',
|
|
color: 'gray',
|
|
},
|
|
{
|
|
text: client.username,
|
|
color: 'green',
|
|
},
|
|
MessageBuilder.fromString('&7' + data.message),
|
|
],
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
module.exports = {inject};
|