Привет! Ищу идею по ремонту польских персонажей в RedAge. Они выглядят странно, как будто другим шрифтом.
JavaScript:
let attachedText = null;
mp.events.add('Attach3DTextToPlayer', (description) => {
if (attachedText) {
attachedText.destroy();
}
attachedText = mp.labels.new(description, new mp.Vector3(0, 0, 0), {
los: false,
font: 4,
drawDistance: 15,
dimension: mp.players.local.dimension
});
// Update text label position every frame
mp.events.add('render', () => {
if (attachedText) {
let playerPos = mp.players.local.position;
attachedText.position = new mp.Vector3(playerPos.x, playerPos.y, playerPos.z - -0.3); // Adjust height as needed
}
});
});