Fixed ToggleSprint

This commit is contained in:
The Biggest skiddd 2023-06-21 15:11:56 +02:00
parent 62cc34a94c
commit f50192d2ec
119 changed files with 633 additions and 219 deletions

2
.gitignore vendored
View File

@ -10,6 +10,8 @@ dependency-reduced-pom.xml
buildNumber.properties buildNumber.properties
.mvn/timing.properties .mvn/timing.properties
workspace/settings/
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
!/.mvn/wrapper/maven-wrapper.jar !/.mvn/wrapper/maven-wrapper.jar

Binary file not shown.

BIN
libs/openauth-1.1.6.jar Normal file

Binary file not shown.

View 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); 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; 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()) {
{
if (this.sprintToggleTimer <= 0 && !this.mc.gameSettings.keyBindSprint.isKeyDown()) boolean isSprintDisabled = !ToggleSprint.optionToggleSprint;
boolean canDoubleTap = ToggleSprint.optionDoubleTap;
// Detect when ToggleSprint was disabled in the in-game options menu
if(ToggleSprint.wasSprintDisabled)
{ {
this.sprintToggleTimer = 7; 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 else
{ {
this.setSprinting(true); 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);
}
} }
} }

View File

@ -1,9 +1,8 @@
package rip.athena.client; package rip.athena.client;
import lombok.Getter; import lombok.Getter;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
import org.json.JSONException;
import org.lwjgl.Sys;
import org.lwjgl.opengl.Display; import org.lwjgl.opengl.Display;
import rip.athena.client.account.AccountManager; import rip.athena.client.account.AccountManager;
import rip.athena.client.config.save.ConfigManager; 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.gui.notifications.NotificationManager;
import rip.athena.client.macros.MacroManager; import rip.athena.client.macros.MacroManager;
import rip.athena.client.modules.ModuleManager; 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.socket.SocketClient;
import rip.athena.client.theme.ThemeManager; import rip.athena.client.theme.ThemeManager;
import rip.athena.client.utils.PrefixedLogger; 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 rip.athena.client.utils.input.KeybindManager;
import javax.swing.*; import javax.swing.*;
import java.awt.*;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URLEncoder;
import java.nio.file.Paths; import java.nio.file.Paths;
import java.util.NoSuchElementException;
/** /**
* The Athena class represents the main class of the Athena Client. * The Athena class represents the main class of the Athena Client.

View File

@ -167,6 +167,8 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl {
} }
GlStateManager.popMatrix(); GlStateManager.popMatrix();
GlStateManager.color(1,1,1);
} }
public void initPage() { public void initPage() {

View File

@ -365,7 +365,7 @@ public class SettingsPage extends Page {
@Override @Override
public void onUnload() { public void onUnload() {
if(!cleared) { if(!cleared) {
Minecraft.getMinecraft().renderGlobal.loadRenderers(); //Minecraft.getMinecraft().renderGlobal.loadRenderers();
cleared = true; cleared = true;
} }
} }
@ -378,7 +378,7 @@ public class SettingsPage extends Page {
@Override @Override
public void onClose() { public void onClose() {
if(!cleared) { if(!cleared) {
Minecraft.getMinecraft().renderGlobal.loadRenderers(); //Minecraft.getMinecraft().renderGlobal.loadRenderers();
cleared = true; cleared = true;
} }
} }

View File

@ -49,7 +49,9 @@ import rip.athena.client.utils.animations.Animation;
import rip.athena.client.utils.animations.Direction; import rip.athena.client.utils.animations.Direction;
import rip.athena.client.utils.animations.impl.EaseBackIn; import rip.athena.client.utils.animations.impl.EaseBackIn;
import rip.athena.client.utils.input.InputUtils; 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.DrawUtils;
import rip.athena.client.utils.render.RoundedUtils;
/** /**
* @author Athena Development * @author Athena Development
@ -161,8 +163,6 @@ public class AthenaMenu extends GuiScreen implements GuiYesNoCallback
public void updateScreen() public void updateScreen()
{ {
++this.panoramaTimer; ++this.panoramaTimer;
// Wrapper.getInstance().getGuiAccountManager().updateScreen();
} }
public boolean doesGuiPauseGame() public boolean doesGuiPauseGame()
@ -314,12 +314,12 @@ public class AthenaMenu extends GuiScreen implements GuiYesNoCallback
GlStateManager.pushMatrix(); GlStateManager.pushMatrix();
boolean isOverAccountManager = mouseX >= startX+startX-50 && mouseX <= startX+startX-30 && mouseY >= startY - startY + 5 && mouseY <= startY - startY + 25; 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()); 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());
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.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; 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()); 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());
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.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(); GlStateManager.popMatrix();
super.drawScreen(mouseX, mouseY, partialTicks); super.drawScreen(mouseX, mouseY, partialTicks);

View File

@ -1,5 +1,7 @@
package rip.athena.client.gui.menu.altmanager; 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.MicrosoftAuthResult;
import fr.litarvan.openauth.microsoft.MicrosoftAuthenticationException; import fr.litarvan.openauth.microsoft.MicrosoftAuthenticationException;
import fr.litarvan.openauth.microsoft.MicrosoftAuthenticator; 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.gui.ScaledResolution;
import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.renderer.texture.DynamicTexture; import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.client.renderer.texture.TextureManager;
import net.minecraft.util.ResourceLocation; import net.minecraft.util.ResourceLocation;
import net.minecraft.util.Session; import net.minecraft.util.Session;
import net.minecraft.util.StringUtils;
import org.apache.commons.lang3.RandomStringUtils; import org.apache.commons.lang3.RandomStringUtils;
import org.lwjgl.opengl.GL11;
import rip.athena.client.Athena; import rip.athena.client.Athena;
import rip.athena.client.account.Account; import rip.athena.client.account.Account;
import rip.athena.client.account.AccountType; 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())); 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()))); //mc.getTextureManager().bindTexture(face(a.getUsername(), UUID.fromString(a.getUuid())));
} else { } else {
mc.getTextureManager().bindTexture(new ResourceLocation("head.png")); mc.getTextureManager().bindTexture(new ResourceLocation("Athena/menu/head.png"));
} }
GlStateManager.enableBlend(); 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;
}
} }

View File

@ -202,7 +202,6 @@ public class LoginPanel extends Panel {
actionButtons.forEach(actionButton -> actionButton.mouseClicked(mouseX, mouseY, button)); actionButtons.forEach(actionButton -> actionButton.mouseClicked(mouseX, mouseY, button));
if (hoveringMicrosoft && button == 0) { if (hoveringMicrosoft && button == 0) {
new Thread(() -> { new Thread(() -> {
MicrosoftAuthenticator authenticator = new MicrosoftAuthenticator(); MicrosoftAuthenticator authenticator = new MicrosoftAuthenticator();

View File

@ -11,6 +11,7 @@ import rip.athena.client.gui.hud.HUDElement;
import rip.athena.client.modules.Category; import rip.athena.client.modules.Category;
import rip.athena.client.modules.Module; import rip.athena.client.modules.Module;
import rip.athena.client.utils.font.FontManager; 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.DrawUtils;
import rip.athena.client.utils.render.RoundedUtils; import rip.athena.client.utils.render.RoundedUtils;
@ -117,7 +118,6 @@ public class ToggleSprint extends Module {
options.jump = settings.keyBindJump.isKeyDown(); options.jump = settings.keyBindJump.isKeyDown();
if (optionToggleSneak) { if (optionToggleSneak) {
if (settings.keyBindSneak.isKeyDown() && !handledSneakPress) { if (settings.keyBindSneak.isKeyDown() && !handledSneakPress) {
if(thisPlayer.isRiding() || thisPlayer.capabilities.isFlying) { if(thisPlayer.isRiding() || thisPlayer.capabilities.isFlying) {
@ -244,17 +244,19 @@ public class ToggleSprint extends Module {
GL11.glPushMatrix(); GL11.glPushMatrix();
if(backGround) { if (backGround) {
if(backgroundMode.equalsIgnoreCase("Modern")) { if (backgroundMode.equalsIgnoreCase("Modern")) {
if(Athena.INSTANCE.getThemeManager().getTheme().isTriColor()) { 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()); 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 { } 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()); 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")) { } 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 { } 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());
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 546 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 866 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 872 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 941 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 798 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 595 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 764 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 996 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 818 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 791 B

View 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

View 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

View 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

View 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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More