Update WaterMark FecurityPremium $$

Начинающий
Статус
Оффлайн
Регистрация
6 Ноя 2023
Сообщения
52
Реакции[?]
0
Поинты[?]
1K
1718751582718.png1718751600918.png
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
private final AnimatedTexts animatedText = new AnimatedTexts("FecuritySquad", 1f, 20.0f);

    if (mode.is("Логотип")) {
            RectUtil.drawImage(event.getMatrix(), new ResourceLocation("fecurity", "texture/logo.png"), x, y, 42, 42);
            animatedText.update();
            animatedText.render(event.getMatrix(), font, x + 50, y + 15, getTheme().getClientColor(90));
        }
Это util

Код:
public class AnimatedTexts {
    private final String text;
    private final float speed;
    private final float delay;
    private float progress;
    private float timer;
    private boolean fadingIn;

    public AnimatedTexts(String text, float speed, float delay) {
        this.text = text;
        this.speed = speed;
        this.delay = delay;
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }

    public void update() {
        float adjustedSpeed = speed / 10;

        if (fadingIn) {
            if (progress < text.length()) {
                progress += adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = false;
                    timer = 0;
                }
            }
        } else {
            if (progress > 0) {
                progress -= adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = true;
                    timer = 0;
                }
            }
        }
    }

    public void render(MatrixStack matrixStack, Font font, float x, float y, int color) {
        int length = (int) Math.min(text.length(), Math.max(0, progress));
        String visibleText =  text.substring(0, length);
        font.draw(matrixStack, visibleText, x, y, color);
    }

    public void reset() {
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }
}
База своя но максимально простая исправите под себя сами
 
Начинающий
Статус
Оффлайн
Регистрация
3 Май 2024
Сообщения
181
Реакции[?]
0
Поинты[?]
0
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
private final AnimatedTexts animatedText = new AnimatedTexts("FecuritySquad", 1f, 20.0f);

    if (mode.is("Логотип")) {
            RectUtil.drawImage(event.getMatrix(), new ResourceLocation("fecurity", "texture/logo.png"), x, y, 42, 42);
            animatedText.update();
            animatedText.render(event.getMatrix(), font, x + 50, y + 15, getTheme().getClientColor(90));
        }
Это util

Код:
public class AnimatedTexts {
    private final String text;
    private final float speed;
    private final float delay;
    private float progress;
    private float timer;
    private boolean fadingIn;

    public AnimatedTexts(String text, float speed, float delay) {
        this.text = text;
        this.speed = speed;
        this.delay = delay;
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }

    public void update() {
        float adjustedSpeed = speed / 10;

        if (fadingIn) {
            if (progress < text.length()) {
                progress += adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = false;
                    timer = 0;
                }
            }
        } else {
            if (progress > 0) {
                progress -= adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = true;
                    timer = 0;
                }
            }
        }
    }

    public void render(MatrixStack matrixStack, Font font, float x, float y, int color) {
        int length = (int) Math.min(text.length(), Math.max(0, progress));
        String visibleText =  text.substring(0, length);
        font.draw(matrixStack, visibleText, x, y, color);
    }

    public void reset() {
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }
}
База своя но максимально простая исправите под себя сами
ну ладно:roflanPominki:
 
Начинающий
Статус
Оффлайн
Регистрация
16 Сен 2023
Сообщения
103
Реакции[?]
4
Поинты[?]
7K
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
private final AnimatedTexts animatedText = new AnimatedTexts("FecuritySquad", 1f, 20.0f);

    if (mode.is("Логотип")) {
            RectUtil.drawImage(event.getMatrix(), new ResourceLocation("fecurity", "texture/logo.png"), x, y, 42, 42);
            animatedText.update();
            animatedText.render(event.getMatrix(), font, x + 50, y + 15, getTheme().getClientColor(90));
        }
Это util

Код:
public class AnimatedTexts {
    private final String text;
    private final float speed;
    private final float delay;
    private float progress;
    private float timer;
    private boolean fadingIn;

    public AnimatedTexts(String text, float speed, float delay) {
        this.text = text;
        this.speed = speed;
        this.delay = delay;
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }

    public void update() {
        float adjustedSpeed = speed / 10;

        if (fadingIn) {
            if (progress < text.length()) {
                progress += adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = false;
                    timer = 0;
                }
            }
        } else {
            if (progress > 0) {
                progress -= adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = true;
                    timer = 0;
                }
            }
        }
    }

    public void render(MatrixStack matrixStack, Font font, float x, float y, int color) {
        int length = (int) Math.min(text.length(), Math.max(0, progress));
        String visibleText =  text.substring(0, length);
        font.draw(matrixStack, visibleText, x, y, color);
    }

    public void reset() {
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }
}
База своя но максимально простая исправите под себя сами
АХАХХАХА БЛЯТЬ ЧТО ЭТО
 
Forge Api ;-;
Забаненный
Статус
Оффлайн
Регистрация
3 Май 2023
Сообщения
867
Реакции[?]
19
Поинты[?]
9K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Ну и залупа
 
Забаненный
Статус
Оффлайн
Регистрация
27 Май 2024
Сообщения
255
Реакции[?]
10
Поинты[?]
10K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
private final AnimatedTexts animatedText = new AnimatedTexts("FecuritySquad", 1f, 20.0f);

    if (mode.is("Логотип")) {
            RectUtil.drawImage(event.getMatrix(), new ResourceLocation("fecurity", "texture/logo.png"), x, y, 42, 42);
            animatedText.update();
            animatedText.render(event.getMatrix(), font, x + 50, y + 15, getTheme().getClientColor(90));
        }
Это util

Код:
public class AnimatedTexts {
    private final String text;
    private final float speed;
    private final float delay;
    private float progress;
    private float timer;
    private boolean fadingIn;

    public AnimatedTexts(String text, float speed, float delay) {
        this.text = text;
        this.speed = speed;
        this.delay = delay;
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }

    public void update() {
        float adjustedSpeed = speed / 10;

        if (fadingIn) {
            if (progress < text.length()) {
                progress += adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = false;
                    timer = 0;
                }
            }
        } else {
            if (progress > 0) {
                progress -= adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = true;
                    timer = 0;
                }
            }
        }
    }

    public void render(MatrixStack matrixStack, Font font, float x, float y, int color) {
        int length = (int) Math.min(text.length(), Math.max(0, progress));
        String visibleText =  text.substring(0, length);
        font.draw(matrixStack, visibleText, x, y, color);
    }

    public void reset() {
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }
}
База своя но максимально простая исправите под себя сами
"база своя", база экселлента не может быть своей братан
 
Начинающий
Статус
Оффлайн
Регистрация
10 Июл 2022
Сообщения
157
Реакции[?]
5
Поинты[?]
0
"база своя", база экселлента не может быть своей братан
Какая база экселлента ты видел что у них по модулям братан.

Плюс спащеная утилка не говорит что база экселлента
 
Забаненный
Статус
Оффлайн
Регистрация
27 Май 2024
Сообщения
255
Реакции[?]
10
Поинты[?]
10K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Какая база экселлента ты видел что у них по модулям братан.

Плюс спащеная утилка не говорит что база экселлента
Да замолчи , мне похуй , что ты пишешь. По модулям блять, тут по скринам все видно 1718960142305.png
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
private final AnimatedTexts animatedText = new AnimatedTexts("FecuritySquad", 1f, 20.0f);

    if (mode.is("Логотип")) {
            RectUtil.drawImage(event.getMatrix(), new ResourceLocation("fecurity", "texture/logo.png"), x, y, 42, 42);
            animatedText.update();
            animatedText.render(event.getMatrix(), font, x + 50, y + 15, getTheme().getClientColor(90));
        }
Это util

Код:
public class AnimatedTexts {
    private final String text;
    private final float speed;
    private final float delay;
    private float progress;
    private float timer;
    private boolean fadingIn;

    public AnimatedTexts(String text, float speed, float delay) {
        this.text = text;
        this.speed = speed;
        this.delay = delay;
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }

    public void update() {
        float adjustedSpeed = speed / 10;

        if (fadingIn) {
            if (progress < text.length()) {
                progress += adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = false;
                    timer = 0;
                }
            }
        } else {
            if (progress > 0) {
                progress -= adjustedSpeed;
            } else {
                timer += adjustedSpeed;
                if (timer >= delay) {
                    fadingIn = true;
                    timer = 0;
                }
            }
        }
    }

    public void render(MatrixStack matrixStack, Font font, float x, float y, int color) {
        int length = (int) Math.min(text.length(), Math.max(0, progress));
        String visibleText =  text.substring(0, length);
        font.draw(matrixStack, visibleText, x, y, color);
    }

    public void reset() {
        this.progress = 0;
        this.timer = 0;
        this.fadingIn = true;
    }
}
База своя но максимально простая исправите под себя сами
Мало того, что эта хуйня неровная и кривая, так же и на чужой базе, так что нахуй не пиши мне ничего
 
Начинающий
Статус
Оффлайн
Регистрация
6 Ноя 2023
Сообщения
52
Реакции[?]
0
Поинты[?]
1K
Забаненный
Статус
Оффлайн
Регистрация
27 Май 2024
Сообщения
255
Реакции[?]
10
Поинты[?]
10K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Сверху Снизу