Исходник Skid Watermark Excellent Client

Начинающий
Статус
Онлайн
Регистрация
3 Сен 2023
Сообщения
216
Реакции[?]
3
Поинты[?]
0

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

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

Спасибо!

екселента - секселент.PNG

мое - моеец.PNG


Java:
BetterText exlText = new BetterText(List.of(
        "excellent",
        "pisisisis",
        "yougameik"
), 2000);

private void ExcellentWatermarka(MatrixStack matrixStack) {

    float x = 5, y = 5;

    int firstColor = ColorUtil.getColorStyle(0);
    int secondColor = ColorUtil.getColorStyle(90);

    final float width = Math.max(80, Fonts.exl[16].getWidth(exlText.output) + 40);
    final float height = 20;

    RenderUtil.Render2D.drawGradientRound(4.4f,7f,width - 2,height - 1.6f,2,firstColor,secondColor,ColorUtil.getColorStyle(180),ColorUtil.getColorStyle(270));
    RenderUtil.Render2D.drawRoundedRect(5,5,width,height,2,ColorUtil.rgba(255,255,255,225));
    RenderUtil.Render2D.drawShadow(5f,5f,width - 1,height - 4.6f,2,firstColor,secondColor,ColorUtil.getColorStyle(180),ColorUtil.getColorStyle(270));

    Fonts.exl[16].drawCenteredString(matrixStack, exlText.output, 27,17.5,ColorUtil.rgba(0,0,0,250));
    Fonts.exl[20].drawCenteredString(matrixStack, "EXCELLENT " + IMinecraft.mc.debugFPS + "ФПС", 44.8f,8.7,ColorUtil.rgba(0,0,0,250));
}
шрифт -
Пожалуйста, авторизуйтесь для просмотра ссылки.


в Fonts.java добавляем
public static volatile StyledFont[] exl = new StyledFont[27];
а так - же
for (int i = 8; i < 27;i++) {
exl = new StyledFont("small_pixel.ttf", i, 0.0f, 0.0f, 0.0f, true, Lang.ENG_RU);
}
и теперь вы очень крутые ребята
upd
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
26 Мар 2024
Сообщения
42
Реакции[?]
0
Поинты[?]
0
екселента - Посмотреть вложение 273419

мое - Посмотреть вложение 273420


Java:
BetterText exlText = new BetterText(List.of(
            "excellent",
            "pisisisis",
            "yougameik"
    ), 2500);

    private void ExcellentWatermarka(MatrixStack matrixStack) {

        float x = 5, y = 5;

        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);

        int firstColor1 = ColorUtil.getColorStyle(0) * getAlpha(200);
        int secondColor1 = ColorUtil.getColorStyle(90) * getAlpha(200);

        final float width = Math.max(80, Fonts.exl[16].getWidth(exlText.output) + 40);
        final float height = 20;

        RenderUtil.Render2D.drawGradientRound(4.4f,7f,width - 2,height - 1.6f,2,firstColor,secondColor,ColorUtil.getColorStyle(180),ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(5,5,width,height,2,ColorUtil.rgba(255,255,255,225));
        RenderUtil.Render2D.drawShadow(5f,5f,width - 1,height - 4.6f,2,firstColor1,secondColor1,ColorUtil.getColorStyle(180) * getAlpha(200),ColorUtil.getColorStyle(270) * getAlpha(200));

        Fonts.exl[16].drawCenteredString(matrixStack, exlText.output, 27,17.5,ColorUtil.rgba(0,0,0,250));
        Fonts.exl[20].drawCenteredString(matrixStack, "EXCELLENT " + IMinecraft.mc.debugFPS + "ФПС", 44.8f,8.7,ColorUtil.rgba(0,0,0,250));
    }
Бэкграунд идет под тему ?
 
Начинающий
Статус
Оффлайн
Регистрация
19 Ноя 2023
Сообщения
202
Реакции[?]
2
Поинты[?]
2K
екселента - Посмотреть вложение 273419

мое - Посмотреть вложение 273420


Java:
BetterText exlText = new BetterText(List.of(
            "excellent",
            "pisisisis",
            "yougameik"
    ), 2500);

    private void ExcellentWatermarka(MatrixStack matrixStack) {

        float x = 5, y = 5;

        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);

        int firstColor1 = ColorUtil.getColorStyle(0) * getAlpha(200);
        int secondColor1 = ColorUtil.getColorStyle(90) * getAlpha(200);

        final float width = Math.max(80, Fonts.exl[16].getWidth(exlText.output) + 40);
        final float height = 20;

        RenderUtil.Render2D.drawGradientRound(4.4f,7f,width - 2,height - 1.6f,2,firstColor,secondColor,ColorUtil.getColorStyle(180),ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(5,5,width,height,2,ColorUtil.rgba(255,255,255,225));
        RenderUtil.Render2D.drawShadow(5f,5f,width - 1,height - 4.6f,2,firstColor1,secondColor1,ColorUtil.getColorStyle(180) * getAlpha(200),ColorUtil.getColorStyle(270) * getAlpha(200));

        Fonts.exl[16].drawCenteredString(matrixStack, exlText.output, 27,17.5,ColorUtil.rgba(0,0,0,250));
        Fonts.exl[20].drawCenteredString(matrixStack, "EXCELLENT " + IMinecraft.mc.debugFPS + "ФПС", 44.8f,8.7,ColorUtil.rgba(0,0,0,250));
    }
Шрифт какой?
 
Начинающий
Статус
Оффлайн
Регистрация
26 Май 2020
Сообщения
260
Реакции[?]
9
Поинты[?]
8K
екселента - Посмотреть вложение 273419

мое - Посмотреть вложение 273420


Java:
BetterText exlText = new BetterText(List.of(
            "excellent",
            "pisisisis",
            "yougameik"
    ), 2500);

    private void ExcellentWatermarka(MatrixStack matrixStack) {

        float x = 5, y = 5;

        int firstColor = ColorUtil.getColorStyle(0);
        int secondColor = ColorUtil.getColorStyle(90);

        int firstColor1 = ColorUtil.getColorStyle(0) * getAlpha(200);
        int secondColor1 = ColorUtil.getColorStyle(90) * getAlpha(200);

        final float width = Math.max(80, Fonts.exl[16].getWidth(exlText.output) + 40);
        final float height = 20;

        RenderUtil.Render2D.drawGradientRound(4.4f,7f,width - 2,height - 1.6f,2,firstColor,secondColor,ColorUtil.getColorStyle(180),ColorUtil.getColorStyle(270));
        RenderUtil.Render2D.drawRoundedRect(5,5,width,height,2,ColorUtil.rgba(255,255,255,225));
        RenderUtil.Render2D.drawShadow(5f,5f,width - 1,height - 4.6f,2,firstColor1,secondColor1,ColorUtil.getColorStyle(180) * getAlpha(200),ColorUtil.getColorStyle(270) * getAlpha(200));

        Fonts.exl[16].drawCenteredString(matrixStack, exlText.output, 27,17.5,ColorUtil.rgba(0,0,0,250));
        Fonts.exl[20].drawCenteredString(matrixStack, "EXCELLENT " + IMinecraft.mc.debugFPS + "ФПС", 44.8f,8.7,ColorUtil.rgba(0,0,0,250));
    }
сделай белый бекграунд чуть-чуть прозрачнее, чтобы цвет доходил, и будет очень круто!
 
Сверху Снизу