33 lines
992 B
JavaScript
33 lines
992 B
JavaScript
const convert = require('color-convert')
|
|
|
|
function inject (bot) {
|
|
bot.bruhifyTextTitle = ''
|
|
let startHue = 0
|
|
const timer = setInterval(() => {
|
|
if (bot.bruhifyTextTitle === '') return
|
|
|
|
let hue = startHue
|
|
const displayName = bot.bruhifyTextTitle
|
|
const increment = (360 / Math.max(displayName.length, 20))
|
|
const component = []
|
|
for (const character of displayName) {
|
|
const color = convert.hsv.hex(hue, 100, 100)
|
|
component.push({
|
|
text: character,
|
|
color: `#${color}`,
|
|
|
|
})
|
|
|
|
// hoverEvent: { action:"show_text", value: '§aMan i like frogs - _ChipMC_'},
|
|
hue = (hue + increment) % 360
|
|
}
|
|
bot.core.run(`title @a title ${JSON.stringify(component)}`) // instead of doing just "tellraw" do "minecraft:tellraw"
|
|
|
|
startHue = (startHue + increment) % 360
|
|
}, 100)
|
|
|
|
bot.on('end', () => {
|
|
clearInterval(timer)
|
|
})
|
|
}
|
|
module.exports = inject
|