FridayNightFunkinBoyfriendBot/modules/bruhify.js

28 lines
816 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05:00
const convert = require('color-convert')
2024-01-12 12:24:01 -05:00
function bruhify (bot) {
2023-12-17 14:55:27 -05:00
bot.bruhifyText = ''
let startHue = 0
const timer = setInterval(() => {
if (bot.bruhifyText === '') return
let tag = 'bruhify'
let hue = startHue
const displayName = bot.bruhifyText
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}` })
hue = (hue + increment) % 360
}
bot.core.run(`minecraft:title @a actionbar ${JSON.stringify(component)}`)
startHue = (startHue + increment) % 360
2024-01-12 12:24:01 -05:00
}, 100)
2023-12-17 14:55:27 -05:00
bot.on('end', () => {
// clearInterval(timer)
})
}
2024-01-12 12:24:01 -05:00
module.exports = bruhify