Fixed ToggleSprint
2
.gitignore
vendored
@ -10,6 +10,8 @@ dependency-reduced-pom.xml
|
||||
buildNumber.properties
|
||||
.mvn/timing.properties
|
||||
|
||||
workspace/settings/
|
||||
|
||||
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
||||
!/.mvn/wrapper/maven-wrapper.jar
|
||||
|
||||
|
BIN
libs/openauth-1.1.6-sources.jar
Normal file
BIN
libs/openauth-1.1.6.jar
Normal file
@ -797,17 +797,93 @@ public class EntityPlayerSP extends AbstractClientPlayer
|
||||
this.pushOutOfBlocks(this.posX - (double)this.width * 0.35D, this.getEntityBoundingBox().minY + 0.5D, this.posZ - (double)this.width * 0.35D);
|
||||
this.pushOutOfBlocks(this.posX + (double)this.width * 0.35D, this.getEntityBoundingBox().minY + 0.5D, this.posZ - (double)this.width * 0.35D);
|
||||
this.pushOutOfBlocks(this.posX + (double)this.width * 0.35D, this.getEntityBoundingBox().minY + 0.5D, this.posZ + (double)this.width * 0.35D);
|
||||
|
||||
boolean flag3 = (float)this.getFoodStats().getFoodLevel() > 6.0F || this.capabilities.allowFlying;
|
||||
|
||||
if (this.onGround && !flag1 && !flag2 && this.movementInput.moveForward >= f && !this.isSprinting() && flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness))
|
||||
if(Athena.INSTANCE.getModuleManager().get(ToggleSprint.class).isToggled()) {
|
||||
|
||||
boolean isSprintDisabled = !ToggleSprint.optionToggleSprint;
|
||||
boolean canDoubleTap = ToggleSprint.optionDoubleTap;
|
||||
|
||||
// Detect when ToggleSprint was disabled in the in-game options menu
|
||||
if(ToggleSprint.wasSprintDisabled)
|
||||
{
|
||||
if (this.sprintToggleTimer <= 0 && !this.mc.gameSettings.keyBindSprint.isKeyDown())
|
||||
this.setSprinting(false);
|
||||
ToggleSprint.UpdateSprint(false, false);
|
||||
ToggleSprint.wasSprintDisabled = false;
|
||||
|
||||
}
|
||||
|
||||
// Default Sprint routine converted to PlayerAPI, use if ToggleSprint is disabled
|
||||
if(isSprintDisabled)
|
||||
{
|
||||
if(ToggleSprint.optionDoubleTap && this.onGround && !flag2 && this.movementInput.moveForward >= f && !this.isSprinting() && flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness))
|
||||
{
|
||||
if(this.sprintToggleTimer <= 0 && !this.mc.gameSettings.keyBindSprint.isKeyDown())
|
||||
{
|
||||
this.sprintToggleTimer = 7;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.setSprinting(true);
|
||||
|
||||
ToggleSprint.UpdateSprint(true, false);
|
||||
}
|
||||
}
|
||||
|
||||
if(!this.isSprinting() && this.movementInput.moveForward >= f && flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness) && this.mc.gameSettings.keyBindSprint.isKeyDown())
|
||||
{
|
||||
this.setSprinting(true);
|
||||
|
||||
ToggleSprint.UpdateSprint(true, false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
boolean state = ToggleSprint.sprint;
|
||||
|
||||
if(flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness) && !ToggleSprint.sprintHeldAndReleased)
|
||||
{
|
||||
if(canDoubleTap && !this.isSprinting() || !canDoubleTap)
|
||||
{
|
||||
this.setSprinting(state);
|
||||
}
|
||||
}
|
||||
|
||||
if(canDoubleTap && !state && this.onGround && !flag2 && this.movementInput.moveForward >= f && !this.isSprinting() && flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness))
|
||||
{
|
||||
if(this.sprintToggleTimer == 0)
|
||||
{
|
||||
this.sprintToggleTimer = 7;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.setSprinting(true);
|
||||
ToggleSprint.UpdateSprint(true, true);
|
||||
this.sprintToggleTimer = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If sprinting, break the sprint in appropriate circumstances:
|
||||
// Player stops moving forward, runs into something, or gets too hungry
|
||||
if (isSprinting() && (movementInput.moveForward < f || mc.thePlayer.isCollidedHorizontally || !flag3 || isUsingItem() || isPotionActive(Potion.blindness)))
|
||||
{
|
||||
this.setSprinting(false);
|
||||
// Undo toggle if we resumed vanilla operation due to Hold&Release, DoubleTap, Fly, Ride
|
||||
if (ToggleSprint.sprintHeldAndReleased || isSprintDisabled || ToggleSprint.sprintDoubleTapped || this.isRiding() || (!ToggleSprint.optionEnableFlyBoost ? this.capabilities.isFlying : false) )
|
||||
{
|
||||
ToggleSprint.UpdateSprint(false, false);
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
if (this.onGround && !flag1 && !flag2 && this.movementInput.moveForward >= f && !this.isSprinting() && flag3 && !this.isUsingItem() && !this.isPotionActive(Potion.blindness)) {
|
||||
if (this.sprintToggleTimer <= 0 && !this.mc.gameSettings.keyBindSprint.isKeyDown()) {
|
||||
this.sprintToggleTimer = 7;
|
||||
} else {
|
||||
this.setSprinting(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,8 @@
|
||||
package rip.athena.client;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import org.json.JSONException;
|
||||
import org.lwjgl.Sys;
|
||||
import org.lwjgl.opengl.Display;
|
||||
import rip.athena.client.account.AccountManager;
|
||||
import rip.athena.client.config.save.ConfigManager;
|
||||
@ -14,10 +13,6 @@ import rip.athena.client.gui.hud.HUDManager;
|
||||
import rip.athena.client.gui.notifications.NotificationManager;
|
||||
import rip.athena.client.macros.MacroManager;
|
||||
import rip.athena.client.modules.ModuleManager;
|
||||
import rip.athena.client.modules.impl.other.AimTrainer;
|
||||
import rip.athena.client.requests.ContentType;
|
||||
import rip.athena.client.requests.WebRequest;
|
||||
import rip.athena.client.requests.WebRequestResult;
|
||||
import rip.athena.client.socket.SocketClient;
|
||||
import rip.athena.client.theme.ThemeManager;
|
||||
import rip.athena.client.utils.PrefixedLogger;
|
||||
@ -25,13 +20,9 @@ import rip.athena.client.utils.discord.DiscordRPC;
|
||||
import rip.athena.client.utils.input.KeybindManager;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URISyntaxException;
|
||||
import java.net.URLEncoder;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
/**
|
||||
* The Athena class represents the main class of the Athena Client.
|
||||
|
@ -167,6 +167,8 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl {
|
||||
}
|
||||
|
||||
GlStateManager.popMatrix();
|
||||
|
||||
GlStateManager.color(1,1,1);
|
||||
}
|
||||
|
||||
public void initPage() {
|
||||
|
@ -365,7 +365,7 @@ public class SettingsPage extends Page {
|
||||
@Override
|
||||
public void onUnload() {
|
||||
if(!cleared) {
|
||||
Minecraft.getMinecraft().renderGlobal.loadRenderers();
|
||||
//Minecraft.getMinecraft().renderGlobal.loadRenderers();
|
||||
cleared = true;
|
||||
}
|
||||
}
|
||||
@ -378,7 +378,7 @@ public class SettingsPage extends Page {
|
||||
@Override
|
||||
public void onClose() {
|
||||
if(!cleared) {
|
||||
Minecraft.getMinecraft().renderGlobal.loadRenderers();
|
||||
//Minecraft.getMinecraft().renderGlobal.loadRenderers();
|
||||
cleared = true;
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +49,9 @@ import rip.athena.client.utils.animations.Animation;
|
||||
import rip.athena.client.utils.animations.Direction;
|
||||
import rip.athena.client.utils.animations.impl.EaseBackIn;
|
||||
import rip.athena.client.utils.input.InputUtils;
|
||||
import rip.athena.client.utils.render.ColorUtil;
|
||||
import rip.athena.client.utils.render.DrawUtils;
|
||||
import rip.athena.client.utils.render.RoundedUtils;
|
||||
|
||||
/**
|
||||
* @author Athena Development
|
||||
@ -161,8 +163,6 @@ public class AthenaMenu extends GuiScreen implements GuiYesNoCallback
|
||||
public void updateScreen()
|
||||
{
|
||||
++this.panoramaTimer;
|
||||
|
||||
// Wrapper.getInstance().getGuiAccountManager().updateScreen();
|
||||
}
|
||||
|
||||
public boolean doesGuiPauseGame()
|
||||
@ -314,12 +314,12 @@ public class AthenaMenu extends GuiScreen implements GuiYesNoCallback
|
||||
|
||||
GlStateManager.pushMatrix();
|
||||
boolean isOverAccountManager = mouseX >= startX+startX-50 && mouseX <= startX+startX-30 && mouseY >= startY - startY + 5 && mouseY <= startY - startY + 25;
|
||||
DrawUtils.drawRoundedRect(startX+startX - 50, startY - startY + 5, startX+startX - 30, startY - startY + 25, 4, isOverAccountManager ? new Color(200,200,200,100).getRGB() : new Color(100,100,100,100).getRGB());
|
||||
DrawUtils.drawRoundedRect(startX+startX - 50 + 1, startY - startY + 5 + 1, startX+startX - 30 - 1, startY - startY + 25 - 1, 3, new Color(22, 24, 27,80).getRGB());
|
||||
RoundedUtils.drawRoundedRect(startX+startX - 50, startY - startY + 5, startX+startX - 30, startY - startY + 25, 14, isOverAccountManager ? new Color(150,150,150,100).getRGB() : new Color(100,100,100,100).getRGB());
|
||||
RoundedUtils.drawRoundedGradientOutlineCorner(startX+startX - 50 + 1, startY - startY + 5 + 1, startX+startX - 30 - 1, startY - startY + 25 - 1, 3, 12, ColorUtil.getClientColor(0, 255).getRGB(), ColorUtil.getClientColor(90, 255).getRGB(), ColorUtil.getClientColor(180, 255).getRGB(), ColorUtil.getClientColor(270, 255).getRGB());
|
||||
|
||||
boolean isOverExit = mouseX >= startX+startX-25 && mouseX <= startX+startX - 5 && mouseY >= startY - startY + 5 && mouseY <= startY - startY + 25;
|
||||
DrawUtils.drawRoundedRect(startX+startX - 25, startY - startY + 5, startX+startX - 5, startY - startY + 25, 4, isOverExit ? new Color(200,200,200,100).getRGB() : new Color(100,100,100,100).getRGB());
|
||||
DrawUtils.drawRoundedRect(startX+startX - 25 + 1, startY - startY + 5 + 1, startX+startX - 5 - 1, startY - startY + 25 - 1, 3, new Color(22, 24, 27,80).getRGB());
|
||||
RoundedUtils.drawRoundedRect(startX+startX - 25, startY - startY + 5, startX+startX - 5, startY - startY + 25, 14, isOverExit ? new Color(150,150,150,100).getRGB() : new Color(100,100,100,100).getRGB());
|
||||
RoundedUtils.drawRoundedGradientOutlineCorner(startX+startX - 25 + 1, startY - startY + 5 + 1, startX+startX - 5 - 1, startY - startY + 25 - 1, 3, 12, ColorUtil.getClientColor(0, 255).getRGB(), ColorUtil.getClientColor(90, 255).getRGB(), ColorUtil.getClientColor(180, 255).getRGB(), ColorUtil.getClientColor(270, 255).getRGB());
|
||||
GlStateManager.popMatrix();
|
||||
|
||||
super.drawScreen(mouseX, mouseY, partialTicks);
|
||||
|
@ -1,5 +1,7 @@
|
||||
package rip.athena.client.gui.menu.altmanager;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import com.mojang.authlib.minecraft.MinecraftProfileTexture;
|
||||
import fr.litarvan.openauth.microsoft.MicrosoftAuthResult;
|
||||
import fr.litarvan.openauth.microsoft.MicrosoftAuthenticationException;
|
||||
import fr.litarvan.openauth.microsoft.MicrosoftAuthenticator;
|
||||
@ -8,9 +10,12 @@ import net.minecraft.client.gui.GuiScreen;
|
||||
import net.minecraft.client.gui.ScaledResolution;
|
||||
import net.minecraft.client.renderer.GlStateManager;
|
||||
import net.minecraft.client.renderer.texture.DynamicTexture;
|
||||
import net.minecraft.client.renderer.texture.TextureManager;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraft.util.Session;
|
||||
import net.minecraft.util.StringUtils;
|
||||
import org.apache.commons.lang3.RandomStringUtils;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import rip.athena.client.Athena;
|
||||
import rip.athena.client.account.Account;
|
||||
import rip.athena.client.account.AccountType;
|
||||
@ -148,10 +153,10 @@ public class GuiAccountManager extends GuiScreen {
|
||||
|
||||
RoundedUtils.drawRound(x + 10, y + offsetY + scrollAnimation.getValue(), width - 20, 35, 4, new Color(Athena.INSTANCE.getThemeManager().getPrimaryTheme().getFirstColor()));
|
||||
|
||||
if(a.getAccountType().equals(AccountType.MICROSOFT) || a.getAccountType().equals(AccountType.SESSION)) {
|
||||
if(a.getAccountType().equals(AccountType.MICROSOFT)) {
|
||||
//mc.getTextureManager().bindTexture(face(a.getUsername(), UUID.fromString(a.getUuid())));
|
||||
} else {
|
||||
mc.getTextureManager().bindTexture(new ResourceLocation("head.png"));
|
||||
mc.getTextureManager().bindTexture(new ResourceLocation("Athena/menu/head.png"));
|
||||
}
|
||||
|
||||
GlStateManager.enableBlend();
|
||||
@ -382,23 +387,4 @@ public class GuiAccountManager extends GuiScreen {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private ResourceLocation face(String username, UUID uuid) {
|
||||
|
||||
File model = new File(new File(mc.mcDataDir, "Athena/cachedImages/models"), username + ".png");
|
||||
File face = new File(new File(mc.mcDataDir, "Athena/cachedImages/faces"), username + ".png");
|
||||
|
||||
//loadSkin(mc, username, uuid, model, face);
|
||||
|
||||
try {
|
||||
BufferedImage t = ImageIO.read(face);
|
||||
DynamicTexture nibt = new DynamicTexture(t);
|
||||
|
||||
this.faceTexture = mc.getTextureManager().getDynamicTextureLocation("iasface_" + username.hashCode(), nibt);
|
||||
} catch (Throwable throwable) {
|
||||
this.faceTexture = new ResourceLocation("iaserror", "skin");
|
||||
}
|
||||
|
||||
return this.faceTexture;
|
||||
}
|
||||
}
|
@ -202,7 +202,6 @@ public class LoginPanel extends Panel {
|
||||
actionButtons.forEach(actionButton -> actionButton.mouseClicked(mouseX, mouseY, button));
|
||||
|
||||
if (hoveringMicrosoft && button == 0) {
|
||||
|
||||
new Thread(() -> {
|
||||
MicrosoftAuthenticator authenticator = new MicrosoftAuthenticator();
|
||||
|
||||
|
@ -11,6 +11,7 @@ import rip.athena.client.gui.hud.HUDElement;
|
||||
import rip.athena.client.modules.Category;
|
||||
import rip.athena.client.modules.Module;
|
||||
import rip.athena.client.utils.font.FontManager;
|
||||
import rip.athena.client.utils.render.ColorUtil;
|
||||
import rip.athena.client.utils.render.DrawUtils;
|
||||
import rip.athena.client.utils.render.RoundedUtils;
|
||||
|
||||
@ -117,7 +118,6 @@ public class ToggleSprint extends Module {
|
||||
|
||||
options.jump = settings.keyBindJump.isKeyDown();
|
||||
|
||||
|
||||
if (optionToggleSneak) {
|
||||
if (settings.keyBindSneak.isKeyDown() && !handledSneakPress) {
|
||||
if(thisPlayer.isRiding() || thisPlayer.capabilities.isFlying) {
|
||||
@ -244,17 +244,19 @@ public class ToggleSprint extends Module {
|
||||
|
||||
GL11.glPushMatrix();
|
||||
|
||||
if(backGround) {
|
||||
if(backgroundMode.equalsIgnoreCase("Modern")) {
|
||||
if(Athena.INSTANCE.getThemeManager().getTheme().isTriColor()) {
|
||||
if (backGround) {
|
||||
if (backgroundMode.equalsIgnoreCase("Modern")) {
|
||||
if (Athena.INSTANCE.getThemeManager().getTheme().isTriColor()) {
|
||||
RoundedUtils.drawGradientRound(hud.getX(), hud.getY(), hud.getWidth(), hud.getHeight(), 6, Athena.INSTANCE.getThemeManager().getTheme().getFirstColor(), Athena.INSTANCE.getThemeManager().getTheme().getSecondColor(), Athena.INSTANCE.getThemeManager().getTheme().getThirdColor(), Athena.INSTANCE.getThemeManager().getTheme().getFirstColor());
|
||||
} else {
|
||||
RoundedUtils.drawGradientRound(hud.getX(), hud.getY(), hud.getWidth(), hud.getHeight(), 6, Athena.INSTANCE.getThemeManager().getTheme().getFirstColor(), Athena.INSTANCE.getThemeManager().getTheme().getFirstColor(), Athena.INSTANCE.getThemeManager().getTheme().getSecondColor(), Athena.INSTANCE.getThemeManager().getTheme().getSecondColor());
|
||||
}
|
||||
} else if (backgroundMode.equalsIgnoreCase("Circle")) {
|
||||
RoundedUtils.drawGradientRound(hud.getX(), hud.getY(), hud.getWidth(), hud.getHeight(), 6, ColorUtil.getClientColor(0, 255), ColorUtil.getClientColor(90, 255), ColorUtil.getClientColor(180, 255), ColorUtil.getClientColor(270, 255));
|
||||
} else if (backgroundMode.equalsIgnoreCase("Fade")) {
|
||||
RoundedUtils.drawRoundedRect(hud.getX(), hud.getY(), hud.getX() + hud.getWidth(), hud.getY() + hud.getHeight(), 8.0f, Athena.INSTANCE.getThemeManager().getTheme().getAccentColorWave().getRGB());
|
||||
RoundedUtils.drawRoundedRect(hud.getX(), hud.getY(), hud.getX() + width, hud.getY() + height, 8.0f, Athena.INSTANCE.getThemeManager().getTheme().getAccentColor().getRGB());
|
||||
} else {
|
||||
RoundedUtils.drawRoundedRect(hud.getX(), hud.getY(), hud.getX() + hud.getWidth(), hud.getY() + hud.getHeight(), 12,background.getRGB());
|
||||
RoundedUtils.drawRoundedRect(hud.getX(), hud.getY(), hud.getX() + width, hud.getY() + height, 12, background.getRGB());
|
||||
}
|
||||
}
|
||||
|
||||
|
BIN
src/main/resources/assets/minecraft/Athena/menu/head.png
Normal file
After Width: | Height: | Size: 313 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 546 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 601 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 1002 B |
After Width: | Height: | Size: 872 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 506 B |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 1005 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 708 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 941 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 798 B |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 595 B |
After Width: | Height: | Size: 764 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 434 B |
After Width: | Height: | Size: 996 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 818 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 487 B |
After Width: | Height: | Size: 791 B |
73
workspace/crash-reports/crash-2023-06-20_20.19.15-client.txt
Normal file
@ -0,0 +1,73 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Surprise! Haha. Well, this is awkward.
|
||||
|
||||
Time: 6/20/23 8:19 PM
|
||||
Description: Rendering screen
|
||||
|
||||
java.lang.IllegalArgumentException: Invalid UUID string: 74e897386c9e4f5983efd365849e6049
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:152)
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Stacktrace:
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:152)
|
||||
|
||||
-- Screen render details --
|
||||
Details:
|
||||
Screen name: rip.athena.client.gui.menu.altmanager.GuiAccountManager
|
||||
Mouse location: Scaled: (504, 275). Absolute: (1008, 458)
|
||||
Screen size: Scaled: (960, 505). Absolute: (1920, 1009). Scale factor of 2
|
||||
Stacktrace:
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
-- System Details --
|
||||
Details:
|
||||
Minecraft Version: 1.8.8
|
||||
Operating System: Windows 10 (amd64) version 10.0
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
Java Version: 1.8.0_202, Oracle Corporation
|
||||
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
Memory: 601320672 bytes (573 MB) / 974127104 bytes (929 MB) up to 3801088000 bytes (3625 MB)
|
||||
JVM Flags: 0 total;
|
||||
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 98
|
||||
Launched Version: mcp
|
||||
LWJGL: 2.9.4
|
||||
OpenGL: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 532.03, NVIDIA Corporation
|
||||
GL Caps: Using GL 1.3 multitexturing.
|
||||
Using GL 1.3 texture combiners.
|
||||
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
|
||||
Shaders are available because OpenGL 2.1 is supported.
|
||||
VBOs are available because OpenGL 1.5 is supported.
|
||||
|
||||
Using VBOs: No
|
||||
Is Modded: Very likely; Jar signature invalidated
|
||||
Type: Client (map_client.txt)
|
||||
Resource Packs: ! §bPotfast 5kay.zip
|
||||
Current Language: English (US)
|
||||
Profiler Position: N/A (disabled)
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
OptiFine Version: OptiFine_1.8.8_HD_U_H8
|
||||
Render Distance Chunks: 8
|
||||
Mipmaps: 4
|
||||
Anisotropic Filtering: 1
|
||||
Antialiasing: 0
|
||||
Multitexture: false
|
||||
Shaders: null
|
||||
OpenGlVersion: 4.6.0 NVIDIA 532.03
|
||||
OpenGlRenderer: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2
|
||||
OpenGlVendor: NVIDIA Corporation
|
||||
CpuCount: 12
|
73
workspace/crash-reports/crash-2023-06-20_20.21.28-client.txt
Normal file
@ -0,0 +1,73 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Who set us up the TNT?
|
||||
|
||||
Time: 6/20/23 8:21 PM
|
||||
Description: Rendering screen
|
||||
|
||||
java.lang.IllegalArgumentException: Invalid UUID string: 74e897386c9e4f5983efd365849e6049
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:153)
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Stacktrace:
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:153)
|
||||
|
||||
-- Screen render details --
|
||||
Details:
|
||||
Screen name: rip.athena.client.gui.menu.altmanager.GuiAccountManager
|
||||
Mouse location: Scaled: (914, 17). Absolute: (1828, 1045)
|
||||
Screen size: Scaled: (960, 540). Absolute: (1920, 1080). Scale factor of 2
|
||||
Stacktrace:
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
-- System Details --
|
||||
Details:
|
||||
Minecraft Version: 1.8.8
|
||||
Operating System: Windows 10 (amd64) version 10.0
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
Java Version: 1.8.0_202, Oracle Corporation
|
||||
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
Memory: 250886320 bytes (239 MB) / 575668224 bytes (549 MB) up to 3801088000 bytes (3625 MB)
|
||||
JVM Flags: 0 total;
|
||||
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
|
||||
Launched Version: mcp
|
||||
LWJGL: 2.9.4
|
||||
OpenGL: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 532.03, NVIDIA Corporation
|
||||
GL Caps: Using GL 1.3 multitexturing.
|
||||
Using GL 1.3 texture combiners.
|
||||
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
|
||||
Shaders are available because OpenGL 2.1 is supported.
|
||||
VBOs are available because OpenGL 1.5 is supported.
|
||||
|
||||
Using VBOs: No
|
||||
Is Modded: Very likely; Jar signature invalidated
|
||||
Type: Client (map_client.txt)
|
||||
Resource Packs: ! §bPotfast 5kay.zip
|
||||
Current Language: English (US)
|
||||
Profiler Position: N/A (disabled)
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
OptiFine Version: OptiFine_1.8.8_HD_U_H8
|
||||
Render Distance Chunks: 8
|
||||
Mipmaps: 4
|
||||
Anisotropic Filtering: 1
|
||||
Antialiasing: 0
|
||||
Multitexture: false
|
||||
Shaders: null
|
||||
OpenGlVersion: 4.6.0 NVIDIA 532.03
|
||||
OpenGlRenderer: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2
|
||||
OpenGlVendor: NVIDIA Corporation
|
||||
CpuCount: 12
|
75
workspace/crash-reports/crash-2023-06-20_20.27.04-client.txt
Normal file
@ -0,0 +1,75 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// There are four lights!
|
||||
|
||||
Time: 6/20/23 8:27 PM
|
||||
Description: Rendering screen
|
||||
|
||||
java.lang.IllegalArgumentException: Invalid UUID string: 74e897386c9e4f5983efd365849e6049
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.renderPlayerHead(GuiAccountManager.java:397)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:158)
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Stacktrace:
|
||||
at java.util.UUID.fromString(UUID.java:194)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.renderPlayerHead(GuiAccountManager.java:397)
|
||||
at rip.athena.client.gui.menu.altmanager.GuiAccountManager.drawScreen(GuiAccountManager.java:158)
|
||||
|
||||
-- Screen render details --
|
||||
Details:
|
||||
Screen name: rip.athena.client.gui.menu.altmanager.GuiAccountManager
|
||||
Mouse location: Scaled: (923, 12). Absolute: (1847, 1055)
|
||||
Screen size: Scaled: (960, 540). Absolute: (1920, 1080). Scale factor of 2
|
||||
Stacktrace:
|
||||
at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1442)
|
||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1153)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:432)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
-- System Details --
|
||||
Details:
|
||||
Minecraft Version: 1.8.8
|
||||
Operating System: Windows 10 (amd64) version 10.0
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
Java Version: 1.8.0_202, Oracle Corporation
|
||||
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
Memory: 189054376 bytes (180 MB) / 548929536 bytes (523 MB) up to 3801088000 bytes (3625 MB)
|
||||
JVM Flags: 0 total;
|
||||
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
|
||||
Launched Version: mcp
|
||||
LWJGL: 2.9.4
|
||||
OpenGL: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 532.03, NVIDIA Corporation
|
||||
GL Caps: Using GL 1.3 multitexturing.
|
||||
Using GL 1.3 texture combiners.
|
||||
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
|
||||
Shaders are available because OpenGL 2.1 is supported.
|
||||
VBOs are available because OpenGL 1.5 is supported.
|
||||
|
||||
Using VBOs: No
|
||||
Is Modded: Very likely; Jar signature invalidated
|
||||
Type: Client (map_client.txt)
|
||||
Resource Packs: ! §bPotfast 5kay.zip
|
||||
Current Language: English (US)
|
||||
Profiler Position: N/A (disabled)
|
||||
CPU: 12x AMD Ryzen 5 5600X 6-Core Processor
|
||||
OptiFine Version: OptiFine_1.8.8_HD_U_H8
|
||||
Render Distance Chunks: 8
|
||||
Mipmaps: 4
|
||||
Anisotropic Filtering: 1
|
||||
Antialiasing: 0
|
||||
Multitexture: false
|
||||
Shaders: null
|
||||
OpenGlVersion: 4.6.0 NVIDIA 532.03
|
||||
OpenGlRenderer: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2
|
||||
OpenGlVendor: NVIDIA Corporation
|
||||
CpuCount: 12
|
67
workspace/crash-reports/crash-2023-06-20_22.55.50-client.txt
Normal file
@ -0,0 +1,67 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Hi. I'm Minecraft, and I'm a crashaholic.
|
||||
|
||||
Time: 6/20/23 10:55 PM
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.NoClassDefFoundError: fr/litarvan/openauth/microsoft/MicrosoftAuthenticationException
|
||||
at rip.athena.client.Athena.initClient(Athena.java:97)
|
||||
at net.minecraft.client.Minecraft.startGame(Minecraft.java:491)
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:412)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
Caused by: java.lang.ClassNotFoundException: fr.litarvan.openauth.microsoft.MicrosoftAuthenticationException
|
||||
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
|
||||
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
|
||||
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
|
||||
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
|
||||
... 5 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Stacktrace:
|
||||
at rip.athena.client.Athena.initClient(Athena.java:97)
|
||||
at net.minecraft.client.Minecraft.startGame(Minecraft.java:491)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.Minecraft.run(Minecraft.java:412)
|
||||
at net.minecraft.client.main.Main.main(Main.java:113)
|
||||
at Start.main(Start.java:11)
|
||||
|
||||
-- System Details --
|
||||
Details:
|
||||
Minecraft Version: 1.8.8
|
||||
Operating System: Windows 10 (amd64) version 10.0
|
||||
CPU: <unknown>
|
||||
Java Version: 1.8.0_202, Oracle Corporation
|
||||
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
Memory: 218445472 bytes (208 MB) / 284688384 bytes (271 MB) up to 3801088000 bytes (3625 MB)
|
||||
JVM Flags: 0 total;
|
||||
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
|
||||
Launched Version: mcp
|
||||
LWJGL: 2.9.4
|
||||
OpenGL: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
|
||||
GL Caps:
|
||||
Using VBOs: No
|
||||
Is Modded: Very likely; Jar signature invalidated
|
||||
Type: Client (map_client.txt)
|
||||
Resource Packs: ! §bPotfast 5kay.zip
|
||||
Current Language: ~~ERROR~~ NullPointerException: null
|
||||
Profiler Position: N/A (disabled)
|
||||
CPU: <unknown>
|
||||
OptiFine Version: OptiFine_1.8.8_HD_U_H8
|
||||
Render Distance Chunks: 8
|
||||
Mipmaps: 4
|
||||
Anisotropic Filtering: 1
|
||||
Antialiasing: 0
|
||||
Multitexture: false
|
||||
Shaders: null
|
||||
OpenGlVersion: null
|
||||
OpenGlRenderer: null
|
||||
OpenGlVendor: null
|
||||
CpuCount: 12
|