Вопрос Помогите запустить Zentih DLC

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
22 Сен 2024
Сообщения
5
Реакции
0

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

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

Спасибо!

всегда делал через start в сурсах, сейчас же нужно делать через какой-то gradlew, за который я вообще ничего не понимаю(
модеры не удаляйте, это моя пятая попытка сделать тему
 
всегда делал через start в сурсах, сейчас же нужно делать через какой-то gradlew, за который я вообще ничего не понимаю(
модеры не удаляйте, это моя пятая попытка сделать тему
Gradle - система сборки, с помощью её легче управлять подключаемыми библиотеками, сборкой приложения/библиотеки, проще тестировать(юнит-тесты)
всё что нужно в твоём случае - по идее это просто импортировать проект как Gradle проект в твоей IDE и всё
По большей части всё что касается градла - гуглится, и на всё это с легкостью отвечает даже хреновый ИИ
 
всегда делал через start в сурсах, сейчас же нужно делать через какой-то gradlew, за который я вообще ничего не понимаю(
модеры не удаляйте, это моя пятая попытка сделать тему
./gradlew runClient в консольку введи и будь счастлив. Так же это можно найти в разделе Tasks - Fabric - runClient
 
./gradlew runClient в консольку введи и будь счастлив. Так же это можно найти в разделе Tasks - Fabric - runClient
пробовал и через смдшку, и через интелиджу, в итоге там лярд ошибок, по типу этого:
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\animations\types\ColorCycleRGBA.java:56: error: cannot find symbol
if(animation.getValue()==1){
^
symbol: method getValue()
location: variable animation of type Animation
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method red(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method green(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method blue(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method alpha(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:85: error: cannot find symbol
int r = (int) (startColor.getRed() + (endColor.getRed() - startColor.getRed()) * clampedDelta);
^
symbol: method getRed()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:85: error: cannot find symbol
int r = (int) (startColor.getRed() + (endColor.getRed() - startColor.getRed()) * clampedDelta);
^
symbol: method getRed()
location: variable endColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:85: error: cannot find symbol
int r = (int) (startColor.getRed() + (endColor.getRed() - startColor.getRed()) * clampedDelta);
^
symbol: method getRed()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:86: error: cannot find symbol
int g = (int) (startColor.getGreen() + (endColor.getGreen() - startColor.getGreen()) * clampedDelta);
^
symbol: method getGreen()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:86: error: cannot find symbol
int g = (int) (startColor.getGreen() + (endColor.getGreen() - startColor.getGreen()) * clampedDelta);
^
symbol: method getGreen()
location: variable endColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:86: error: cannot find symbol
int g = (int) (startColor.getGreen() + (endColor.getGreen() - startColor.getGreen()) * clampedDelta);
^
symbol: method getGreen()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:87: error: cannot find symbol
int b = (int) (startColor.getBlue() + (endColor.getBlue() - startColor.getBlue()) * clampedDelta);
^
symbol: method getBlue()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:87: error: cannot find symbol
int b = (int) (startColor.getBlue() + (endColor.getBlue() - startColor.getBlue()) * clampedDelta);
^
symbol: method getBlue()
location: variable endColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:87: error: cannot find symbol
int b = (int) (startColor.getBlue() + (endColor.getBlue() - startColor.getBlue()) * clampedDelta);
^
symbol: method getBlue()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:88: error: cannot find symbol
int a = (int) (startColor.getAlpha() + (endColor.getAlpha() - startColor.getAlpha()) * clampedDelta);
^
symbol: method getAlpha()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:88: error: cannot find symbol
int a = (int) (startColor.getAlpha() + (endColor.getAlpha() - startColor.getAlpha()) * clampedDelta);
^
symbol: method getAlpha()
location: variable endColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:88: error: cannot find symbol
int a = (int) (startColor.getAlpha() + (endColor.getAlpha() - startColor.getAlpha()) * clampedDelta);
^
symbol: method getAlpha()
location: variable startColor of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:113: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
return new ColorRGBA((int) MathUtil.interpolate(this.getRed(), color2.getRed(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:113: error: cannot find symbol
return new ColorRGBA((int) MathUtil.interpolate(this.getRed(), color2.getRed(), amount),
^
symbol: method getRed()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:113: error: cannot find symbol
return new ColorRGBA((int) MathUtil.interpolate(this.getRed(), color2.getRed(), amount),
^
symbol: method getRed()
location: variable color2 of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:114: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getGreen(), color2.getGreen(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:114: error: cannot find symbol
(int) MathUtil.interpolate(this.getGreen(), color2.getGreen(), amount),
^
symbol: method getGreen()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:114: error: cannot find symbol
(int) MathUtil.interpolate(this.getGreen(), color2.getGreen(), amount),
^
symbol: method getGreen()
location: variable color2 of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:115: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getBlue(), color2.getBlue(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:115: error: cannot find symbol
(int) MathUtil.interpolate(this.getBlue(), color2.getBlue(), amount),
^
symbol: method getBlue()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:115: error: cannot find symbol
(int) MathUtil.interpolate(this.getBlue(), color2.getBlue(), amount),
^
symbol: method getBlue()
location: variable color2 of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:116: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getAlpha(), color2.getAlpha(), amount));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:116: error: cannot find symbol
(int) MathUtil.interpolate(this.getAlpha(), color2.getAlpha(), amount));
^
symbol: method getAlpha()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:116: error: cannot find symbol
(int) MathUtil.interpolate(this.getAlpha(), color2.getAlpha(), amount));
^
symbol: method getAlpha()
location: variable color2 of type ColorRGBA
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\autobuy\AutoBuyManager.java:244: error: cannot find symbol
ItemStack golubSphere = new SkinItemBuy("", ItemBuy.Category.HOLLYWORLD, "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGM5MzY1NjQyYzZlZGRjZmVkZjViNWUxNGUyYmM3MTI1N2Q5ZTRhMzM2M2QxMjNjNmYzM2M1NWNhZmJmNmQifX19").getItemStack();

^
symbol: method getItemStack()
location: class SkinItemBuy
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\interfaces\IClient.java:10: error: cannot find symbol
DeepLearningManager deepLearningManager = Zenith.getInstance().getDeepLearningManager();
^
symbol: method getDeepLearningManager()
location: class Zenith
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\interfaces\IClient.java:11: error: cannot find symbol
RotationManager rotationManager = Zenith.getInstance().getRotationManager();
^
symbol: method getRotationManager()
location: class Zenith
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\interfaces\IClient.java:12: error: cannot find symbol
AimManager aimManager = rotationManager.getAimManager();
^
symbol: method getAimManager()
location: variable rotationManager of type RotationManager
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\Zenith.java:109: error: non-static method initializeShaders() cannot be referenced from a static context
DrawUtil.initializeShaders();
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:33: error: cannot find symbol
private RotationTarget previousRotationTarget = new RotationTarget(currentRotation, () -> currentRotation, aimManager.getInstantSetup());
^
symbol: method getInstantSetup()
location: variable aimManager of type AimManager
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:44: error: cannot find symbol
if (eventSpawnLocalPlayer.getEntity() instanceof ClientPlayerEntity player) {
^
symbol: method getEntity()
location: variable eventSpawnLocalPlayer of type EventSpawnEntity
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:49: error: cannot find symbol
previousRotationTarget = new RotationTarget(currentRotation, () -> currentRotation, aimManager.getInstantSetup());
^
symbol: method getInstantSetup()
location: variable aimManager of type AimManager
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:76: error: cannot find symbol
currentRotation = aimManager.rotate(aimManager.getInstantSetup(), new Rotation(mc.player.getYaw(),mc.player.getPitch()));
^
symbol: method getInstantSetup()
location: variable aimManager of type AimManager
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:83: error: cannot find symbol
currentRotation = aimManager.rotate(aimManager.getInstantSetup(), back);
^
symbol: method getInstantSetup()
location: variable aimManager of type AimManager
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:103: error: cannot find symbol
float delta = currentRotation.getYaw() - mc.player.lastYaw;
^
symbol: method getYaw()
location: variable currentRotation of type Rotation
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:103: error: lastYaw has private access in ClientPlayerEntity
float delta = currentRotation.getYaw() - mc.player.lastYaw;
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:105: error: cannot find symbol
Rotation validing = new Rotation(currentRotation.getYaw(), currentRotation.getPitch());
^
symbol: method getYaw()
location: variable currentRotation of type Rotation
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:105: error: cannot find symbol
Rotation validing = new Rotation(currentRotation.getYaw(), currentRotation.getPitch());
^
symbol: method getPitch()
location: variable currentRotation of type Rotation
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:107: error: lastYaw has private access in ClientPlayerEntity
validing = new Rotation(mc.player.lastYaw + 300, currentRotation.getPitch()).normalize(new Rotation(mc.player.lastYaw, mc.player.lastPitch));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\RotationManager.java:107: error: lastPitch has private access in ClientPlayerEntity
validing = new Rotation(mc.player.lastYaw + 300, currentRotation.getPitch()).normalize(new Rotation(mc.player.lastYaw, mc.player.lastPitch));
^
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
100 errors
1 warning

> Task :compileJava FAILED

[Incubating] Problems report is available at: file:///C:/Users/38097/Desktop/funpay/build/reports/problems/problems-report.html

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler output below.
warning: unknown enum constant DeprecationLevel.HIDDEN
reason: class file for kotlin.DeprecationLevel not found
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:113: error: cannot find symbol
return new ColorRGBA((int) MathUtil.interpolate(this.getRed(), color2.getRed(), amount),
^
symbol: method getRed()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:114: error: cannot find symbol
(int) MathUtil.interpolate(this.getGreen(), color2.getGreen(), amount),
^
symbol: method getGreen()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:115: error: cannot find symbol
(int) MathUtil.interpolate(this.getBlue(), color2.getBlue(), amount),
^
symbol: method getBlue()
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:116: error: cannot find symbol
(int) MathUtil.interpolate(this.getAlpha(), color2.getAlpha(), amount));
^
symbol: method getAlpha()
Note: Recompile with -Xlint:deprecation for details.
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method red(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method green(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method blue(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:32: error: non-static method alpha(int) cannot be referenced from a static context
this(ColorUtil.red(color), ColorUtil.green(color), ColorUtil.blue(color), ColorUtil.alpha(color));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:113: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
return new ColorRGBA((int) MathUtil.interpolate(this.getRed(), color2.getRed(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:114: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getGreen(), color2.getGreen(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:115: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getBlue(), color2.getBlue(), amount),
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\utility\render\display\base\color\ColorRGBA.java:116: error: non-static method interpolate(double,double,double) cannot be referenced from a static context
(int) MathUtil.interpolate(this.getAlpha(), color2.getAlpha(), amount));
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\Zenith.java:109: error: non-static method initializeShaders() cannot be referenced from a static context
DrawUtil.initializeShaders();
^
C:\Users\38097\Desktop\funpay\src\main\java\zenith\zov\base\rotation\mods\InterpolationRotationMode.java:29: error: cannot find symbol
public Pair<Float, Float> calculateFactors(Rotation currentRotation, Rotation targetRotation, IntRange horizontalSpeedSetting, IntRange verticalSpeedSetting, IntRange directionChangeFactor, float midpoint) {
 
./gradlew runClient в консольку введи и будь счастлив. Так же это можно найти в разделе Tasks - Fabric - runClient
А ВСЁ БРО ПАСИБА, ЗАПУСТИЛОСЬ
А ВСЁ БРО ПАСИБА, ЗАПУСТИЛОСЬ
только фулл интерфейса не видно, чисто кликгуишка, худа нету
 
Последнее редактирование:
Назад
Сверху Снизу