Исходник Wt nurik skid

Начинающий
Статус
Оффлайн
Регистрация
7 Апр 2024
Сообщения
47
Реакции[?]
0
Поинты[?]
0

Перед прочтением основного контента ниже, пожалуйста, обратите внимание на обновление внутри секции Майна на нашем форуме. У нас появились:

  • бесплатные читы для Майнкрафт — любое использование на свой страх и риск;
  • маркетплейс Майнкрафт — абсолютно любая коммерция, связанная с игрой, за исключением продажи читов (аккаунты, предоставления услуг, поиск кодеров читов и так далее);
  • приватные читы для Minecraft — в этом разделе только платные хаки для игры, покупайте группу "Продавец" и выставляйте на продажу свой софт;
  • обсуждения и гайды — всё тот же раздел с вопросами, но теперь модернизированный: поиск нужных хаков, пати с игроками-читерами и другая полезная информация.

Спасибо!

Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
 
Последнее редактирование:
Read Only
Статус
Оффлайн
Регистрация
29 Апр 2023
Сообщения
669
Реакции[?]
4
Поинты[?]
5K
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
бред
 
Начинающий
Статус
Оффлайн
Регистрация
23 Апр 2024
Сообщения
379
Реакции[?]
0
Поинты[?]
1K
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
калл
 
Начинающий
Статус
Оффлайн
Регистрация
7 Апр 2024
Сообщения
47
Реакции[?]
0
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
7 Апр 2024
Сообщения
47
Реакции[?]
0
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
26 Дек 2023
Сообщения
369
Реакции[?]
0
Поинты[?]
0
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
лично я это не стал бы юзать, но вроде не так все плохо, так что двигайся вперед и у тебя обязательно все получится!
 
Начинающий
Статус
Оффлайн
Регистрация
28 Окт 2024
Сообщения
19
Реакции[?]
0
Поинты[?]
0
Дай
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
Дай шрифт
 
Начинающий
Статус
Оффлайн
Регистрация
12 Фев 2023
Сообщения
26
Реакции[?]
0
Поинты[?]
1K
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
норм
 
Начинающий
Статус
Оффлайн
Регистрация
4 Июл 2021
Сообщения
186
Реакции[?]
1
Поинты[?]
2K
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
оч крута
 
Начинающий
Статус
Оффлайн
Регистрация
8 Июл 2024
Сообщения
16
Реакции[?]
1
Поинты[?]
0
Попытался заскидить. Не получилось, вот и сливаю

p.s я знаю что код хуйня не надо бить палками:roflanBuldiga:

Пожалуйста, авторизуйтесь для просмотра ссылки.


Java:
public void drawStringWatermark(MatrixStack pMatrixStack) {
CFontRenderer normalFont = Fonts.SEMI_14;
CFontRenderer logoIconFont = Fonts.ICONFONT_16;
CFontRenderer iconFont = Fonts.ICON_16;
CFontRenderer nurik = Fonts.NURSULTAN_16;
float cornerRadius = 3;

float leftAndRightPadding = 5.0F;
float iconLeftMargin = 5.0F;
float textLeftMargin = 5.0F;
String logoIcon = "a";
String profileIcon = Icons.USER.getCharacter();
String clockIcon = "Q";
String fpsIcon = Icons.FPS.getCharacter();
String username = NameProtect.getCustomName();
String build = ProfileHandler.getBuild();
String serverIP = ServerHandler.getServerIP();
String fps = mc.getCurrentFps() + " fps";

float logoWidth = logoIconFont.getStringWidth(logoIcon);
float profileIconWidth = iconFont.getStringWidth(profileIcon);
float clockIconWidth = iconFont.getStringWidth(clockIcon);
float fpsIconWidth = iconFont.getStringWidth(fpsIcon);
float firstTextWidth = logoWidth + normalFont.getStringWidth("Release") + iconLeftMargin;
float secondTextWidth = profileIconWidth + normalFont.getStringWidth(username) + iconLeftMargin;
float thirdTextWidth = clockIconWidth + normalFont.getStringWidth(serverIP) + iconLeftMargin;
float fourthTextWidth = fpsIconWidth + normalFont.getStringWidth(fps) + iconLeftMargin;

float width = leftAndRightPadding * 2 + firstTextWidth + secondTextWidth + thirdTextWidth + leftAndRightPadding * 2;

float verticalMargin = 5.0F;
float height = 7.5f + verticalMargin * 2;

float x = 10;
float y = 10;

// рект для иконки
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y, firstTextWidth + logoWidth + leftAndRightPadding*2 - 16, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка
logoIconFont.drawGradientString(pMatrixStack,logoIcon, x + leftAndRightPadding, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст релиз
normalFont.drawGradientString(pMatrixStack, "Release", x + leftAndRightPadding + logoWidth + iconLeftMargin, y + 5.5f, 10);



// рект для фпс и юзернаме
ShaderHandler.drawRoundedBlur(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 6, y, leftAndRightPadding + profileIconWidth + secondTextWidth - iconLeftMargin + fourthTextWidth + leftAndRightPadding, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка юзернами
iconFont.drawGradientString(pMatrixStack,profileIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 8.5f, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + 9 + leftAndRightPadding + profileIconWidth/2, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст юзернаме
normalFont.drawString(pMatrixStack,username, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9, y + 5.5f, ClientColors.getFontColor().getRGB());



// иконка фпс
iconFont.drawGradientString(pMatrixStack,fpsIcon, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth, y + 6.5f, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth - leftAndRightPadding/4, y + 4, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст фпс
normalFont.drawString(pMatrixStack,fps, x + leftAndRightPadding + firstTextWidth + textLeftMargin + profileIconWidth + iconLeftMargin + 9 + secondTextWidth - profileIconWidth + textLeftMargin + fpsIconWidth + leftAndRightPadding/2, y + 5.5f, ClientColors.getFontColor().getRGB());



// рект айпи
ShaderHandler.drawRoundedBlur(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((80)), 20, 0.55f);
DrawHandler.drawRound(pMatrixStack, x + 2, y + height + 5 - 4, leftAndRightPadding + clockIconWidth + thirdTextWidth - iconLeftMargin, height - 3, 3, ClientColors.getBackgroundColor().withAlpha((120)));
// иконка айпи
nurik.drawGradientString(pMatrixStack,clockIcon, x + leftAndRightPadding + 2, y + 5.5f + height + 5 - 4, 10);
// сепаратор
DrawHandler.drawRound(pMatrixStack, x + 11 + 9 - 3, y + 5.5f + height + 5 - 4 -1.5f, 0.5f, height - 11, 0, new CustomColor(255, 255, 255).withAlpha(40));
// текст айпи
normalFont.drawString(pMatrixStack,serverIP, x + leftAndRightPadding + clockIconWidth + iconLeftMargin + 2, y + 5.5f + height + 5 - 4, ClientColors.getFontColor().getRGB());
}
Прикольно :seemsgood:
 
Сверху Снизу