Вопрос Я пастер помогите

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
6 Дек 2023
Сообщения
170
Реакции
2
КАК СДЕЛАТЬ ПЕРЕЛИВАНИЕ РАДУГИ?? shader 1.12.2
evolutin ready pls! im paster
 
ХАХАХАХХАХАХАХХАХАХ
 
Что это за чит вообще?
 
АХЫВХАЗВЫХАФХАВХА
 
АХХАХВХЫАхвыывхавыхХ допеум шустит
 
Прости помочь не могу пастинг не лечится но после 13 пройдёт само
 
ну чувак неплохо))

code:
Expand Collapse Copy
    public int astolfo(int speed, int index) {
        double angle = (int) ((System.currentTimeMillis() / speed + index) % 360);
        return Color.getHSBColor(
                ((angle %= 360) / 360.0) < 0.5 ? -((float) (angle / 360.0)) : (float) (angle / 360.0),
                0.5F,
                1.0F
        ).hashCode();
    }

    public int rainbow(int speed, int index, float saturation, float brightness, float opacity) {
        int angle = (int) ((System.currentTimeMillis() / speed + index) % 360);
        float hue = angle / 360f;
        int color = Color.HSBtoRGB(hue, saturation, brightness);
        return getColor(
                red(color),
                green(color),
                blue(color),
                Math.max(0, Math.min(255, (int) (opacity * 255)))
        );
    }
тут сразу еще астольфо идет в комплекте
 
Назад
Сверху Снизу