function renderFontDrawTextAlign(font, text, x, y, color, align)
if not align or align == 1 then -- слева
renderFontDrawText(font, text, x, y, color)
end
if align == 2 then -- по центру
renderFontDrawText(font, text, x - renderGetFontDrawTextLength(font, text) / 2, y, color)
end
if align == 3 then -- справа
renderFontDrawText(font, text, x - renderGetFontDrawTextLength(font, text), y, color)
end
end