Update WaterMark FecurityPremium $$

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
6 Ноя 2023
Сообщения
59
Реакции
0
1718751582718.png
1718751600918.png

C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
Expand Collapse Copy
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

Код:
Expand Collapse Copy
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;
    }
}
База своя но максимально простая исправите под себя сами
 
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
Expand Collapse Copy
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

Код:
Expand Collapse Copy
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:
 
херня полная:NotLikeThis:
 
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
Expand Collapse Copy
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

Код:
Expand Collapse Copy
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;
    }
}
База своя но максимально простая исправите под себя сами
АХАХХАХА БЛЯТЬ ЧТО ЭТО
279541
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Ну и залупа
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
Expand Collapse Copy
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

Код:
Expand Collapse Copy
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;
    }
}
База своя но максимально простая исправите под себя сами
"база своя", база экселлента не может быть своей братан
 
"база своя", база экселлента не может быть своей братан
Какая база экселлента ты видел что у них по модулям братан.

Плюс спащеная утилка не говорит что база экселлента
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Какая база экселлента ты видел что у них по модулям братан.

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

Посмотреть вложение 279540Посмотреть вложение 279541
C анимки появляется текст клиента или тот что вы выберете


Это рендер
Код:
Expand Collapse Copy
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

Код:
Expand Collapse Copy
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;
    }
}
База своя но максимально простая исправите под себя сами
Мало того, что эта хуйня неровная и кривая, так же и на чужой базе, так что нахуй не пиши мне ничего
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Назад
Сверху Снизу