transparent chat background

This commit is contained in:
Ntdi 2023-06-26 21:00:28 -04:00
parent dd7f56bd41
commit 4b12a00f23
28 changed files with 345 additions and 233 deletions

View File

@ -1,6 +1,8 @@
package net.minecraft.client.gui;
import com.google.common.collect.Lists;
import java.awt.*;
import java.io.IOException;
import java.util.List;
import net.minecraft.network.play.client.C14PacketTabComplete;
@ -14,6 +16,8 @@ import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.lwjgl.input.Keyboard;
import org.lwjgl.input.Mouse;
import rip.athena.client.Athena;
import rip.athena.client.modules.impl.render.Chat;
public class GuiChat extends GuiScreen
{
@ -300,7 +304,12 @@ public class GuiChat extends GuiScreen
*/
public void drawScreen(int mouseX, int mouseY, float partialTicks)
{
drawRect(2, this.height - 14, this.width - 2, this.height - 2, Integer.MIN_VALUE);
Chat module = (Chat) Athena.INSTANCE.getModuleManager().get(Chat.class); // Get chat module
int color = (module.isToggled() ? new Color(0, 0, 0, module.transparency).getRGB() : Integer.MIN_VALUE); // If toggled on, take a peak at transparnecy
drawRect(2, this.height - 14, this.width - 2, this.height - 2, color);
this.inputField.drawTextBox();
IChatComponent ichatcomponent = this.mc.ingameGUI.getChatGUI().getChatComponent(Mouse.getX(), Mouse.getY());

View File

@ -1,6 +1,8 @@
package net.minecraft.client.gui;
import com.google.common.collect.Lists;
import java.awt.*;
import java.util.Iterator;
import java.util.List;
import net.minecraft.client.Minecraft;
@ -82,7 +84,12 @@ public class GuiNewChat extends Gui
{
int i2 = 0;
int j2 = -i1 * 9;
drawRect(i2, j2 - 9, i2 + l + 4, j2, l1 / 2 << 24);
Chat module = (Chat) Athena.INSTANCE.getModuleManager().get(Chat.class);
drawRect(i2, j2 - 9, i2 + l + 4, j2, new Color(1, 1, 1, module.transparency).getRGB());
String s = chatline.getChatComponent().getFormattedText();
GlStateManager.color(1,1,1);
GlStateManager.enableBlend();

View File

@ -14,6 +14,9 @@ public class Chat extends Module {
@ConfigValue.Boolean(name = "Infinite Chat")
public boolean infiniteChat = false;
@ConfigValue.Integer(name = "Background Opacity", min = 0, max = 255)
public int transparency = 96; // close enough to default opacity
public Chat() {
super("Chat", Category.RENDER, "Athena/gui/mods/chat.png");
}

View File

@ -0,0 +1,94 @@
---- Minecraft Crash Report ----
// My bad.
Time: 6/26/23 7:47 PM
Description: Rendering screen
java.lang.IllegalArgumentException: Color parameter outside of expected range: Red Green Blue
at java.awt.Color.testColorValueRange(Color.java:310)
at java.awt.Color.<init>(Color.java:395)
at net.minecraft.client.gui.GuiChat.drawScreen(GuiChat.java:309)
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.awt.Color.testColorValueRange(Color.java:310)
at java.awt.Color.<init>(Color.java:395)
at net.minecraft.client.gui.GuiChat.drawScreen(GuiChat.java:309)
-- Screen render details --
Details:
Screen name: net.minecraft.client.gui.GuiChat
Mouse location: Scaled: (213, 119). Absolute: (427, 240)
Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityPlayerSP['Ntdi'/99, l='MpServer', x=809.09, y=82.60, z=506.79]]
Chunk stats: MultiplayerChunkCache: 289, 289
Level seed: 0
Level generator: ID 02 - largeBiomes, ver 0. Features enabled: false
Level generator options:
Level spawn location: 584.00,64.00,166.00 - World: (584,64,166), Chunk: (at 8,4,6 in 36,10; contains blocks 576,0,160 to 591,255,175), Region: (1,0; contains chunks 32,0 to 63,31, blocks 512,0,0 to 1023,255,511)
Level time: 1485021 game time, 8290 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 5 total; [EntityZombie['Zombie'/163, l='MpServer', x=780.50, y=12.00, z=526.50], EntityPlayerSP['Ntdi'/99, l='MpServer', x=809.09, y=82.60, z=506.79], EntityZombie['Zombie'/171, l='MpServer', x=786.34, y=12.00, z=530.47], EntityZombie['Zombie'/156, l='MpServer', x=742.50, y=23.00, z=467.50], EntityBat['Bat'/189, l='MpServer', x=840.92, y=15.04, z=537.51]]
Retry entities: 0 total; []
Server brand: vanilla
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:401)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2802)
at net.minecraft.client.Minecraft.run(Minecraft.java:453)
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: 16x AMD Ryzen 7 3700X 8-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: 767010072 bytes (731 MB) / 1158152192 bytes (1104 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 99
Launched Version: mcp
LWJGL: 2.9.4
OpenGL: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 536.23, 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: 16x AMD Ryzen 7 3700X 8-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 536.23
OpenGlRenderer: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2
OpenGlVendor: NVIDIA Corporation
CpuCount: 16

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.

View File

@ -1,167 +1,163 @@
[15:14:00] [Client thread/INFO]: Setting user: Player276
[15:14:00] [Client thread/INFO]: (Session ID is token:0:Player276)
[15:14:01] [Client thread/INFO]: [OptiFine] *** Reflector Forge ***
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.Attributes
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.ChunkWatchEvent$UnWatch
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.relauncher.CoreModManager
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.DimensionManager
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Pre
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Post
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$CameraSetup
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogColors
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.EventBus
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event$Result
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.ExtendedBlockState
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.FMLClientHandler
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.FMLCommonHandler
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.biome.BiomeGenBase.getWaterColorMultiplier
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addDestroyEffects
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addHitEffects
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canCreatureSpawn
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canRenderInLayer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.doesSideBlockRendering
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getBedDirection
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getExtendedState
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.hasTileEntity
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isAir
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBed
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBedFoot
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isSideSolid
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.canRiderInteract
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.captureDrops
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.capturedDrops
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRenderInPass
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRiderSit
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getDurabilityForDisplay
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getModel
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.onEntitySwing
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.shouldCauseReequipAnimation
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.showDurabilityBar
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.ItemRecord.getRecordResource
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeModContainer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.potion.PotionEffect.isCurativeItem
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.canRenderBreaking
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.getRenderBoundingBox
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.hasFastRenderer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.shouldRenderInPass
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.preDrawBatch
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.drawBatch
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.preDraw
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.postDraw
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.countEntities
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.getPerWorldStorage
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getCloudRenderer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getSkyRenderer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getWeatherRenderer
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.GuiModList
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.IColoredBakedQuad
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.IExtendedBlockState
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IRenderHandler
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ISmartBlockModel
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ItemModelMesherForge
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraft.launchwrapper.Launch
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.pipeline.LightUtil
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.MinecraftForgeClient
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ModelLoader
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderBlockOverlayEvent$OverlayType
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.registry.RenderingRegistry
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderItemInFrameEvent
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Pre
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Post
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Pre
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Post
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.SplashProgress
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.WorldEvent$Load
[15:14:01] [Client thread/INFO]: [OptiFine] *** Reflector Vanilla ***
[15:14:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: optifine.OptiFineClassTransformer
[15:14:02] [Client thread/ERROR]: [Athena] Failed to load resource outside namespace (C:\Users\nitro\OneDrive\Desktop\programming\AthenaClient\Athena-Client\workspace\.\assets\minecraft\Athena\gui\settings.png).javax.imageio.IIOException: Can't read input file!
[15:14:02] [Client thread/WARN]: [Athena] Tried accessing non-existing module: theme
[15:14:02] [Client thread/WARN]: [Athena] Loaded config default with left over setting theme which is no longer used.
[15:14:02] [Client thread/WARN]: [Athena] Tried accessing non-existing module: cape
[15:14:02] [Client thread/WARN]: [Athena] Loaded config default with left over setting cape which is no longer used.
[15:14:02] [Client thread/INFO]: [Athena] rip.athena.client.cosmetics.cape.Cape@fa11fdaziue's headziue's head
[15:14:02] [Client thread/INFO]: LWJGL Version: 2.9.4
[15:14:03] [Client thread/INFO]: [OptiFine]
[15:14:03] [Client thread/INFO]: [OptiFine] OptiFine_1.8.8_HD_U_H8
[15:14:03] [Client thread/INFO]: [OptiFine] Build: null
[15:14:03] [Client thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0
[15:14:03] [Client thread/INFO]: [OptiFine] Java: 1.8.0_202, Oracle Corporation
[15:14:03] [Client thread/INFO]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
[15:14:03] [Client thread/INFO]: [OptiFine] LWJGL: 2.9.4
[15:14:03] [Client thread/INFO]: [OptiFine] OpenGL: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2, version 4.6.0 NVIDIA 536.23, NVIDIA Corporation
[15:14:03] [Client thread/INFO]: [OptiFine] OpenGL Version: 4.6.0
[15:14:03] [Client thread/INFO]: [OptiFine] Maximum texture size: 32768x32768
[15:14:03] [Thread-7/INFO]: [OptiFine] Checking for new version
[15:14:03] [Client thread/INFO]: [Shaders] ShadersMod version: 2.4.12
[15:14:03] [Client thread/INFO]: [Shaders] OpenGL Version: 4.6.0 NVIDIA 536.23
[15:14:03] [Client thread/INFO]: [Shaders] Vendor: NVIDIA Corporation
[15:14:03] [Client thread/INFO]: [Shaders] Renderer: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2
[15:14:03] [Client thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0
[15:14:03] [Client thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8
[15:14:03] [Client thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8
[15:14:03] [Client thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32
[15:14:03] [Client thread/INFO]: [Shaders] Load ShadersMod configuration.
[15:14:03] [Client thread/INFO]: [Shaders] Shaders can not be loaded, Fast Render is enabled.
[15:14:03] [Client thread/INFO]: [Shaders] No shaderpack loaded.
[15:14:03] [Thread-7/INFO]: [OptiFine] Version found: I7
[15:14:03] [Client thread/INFO]: Reloading ResourceManager: Default, ! §bPotfast 5kay.zip
[15:14:03] [Client thread/INFO]: [OptiFine] *** Reloading textures ***
[15:14:03] [Client thread/INFO]: [OptiFine] Resource packs: ! §bPotfast 5kay.zip
[15:14:03] [Sound Library Loader/INFO]: Starting up SoundSystem...
[15:14:03] [Thread-8/INFO]: Initializing LWJGL OpenAL
[15:14:03] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[15:14:03] [Thread-8/INFO]: OpenAL initialized.
[15:14:04] [Sound Library Loader/INFO]: Sound engine started
[15:14:04] [Client thread/INFO]: [OptiFine] Sprite size: 32
[15:14:04] [Client thread/INFO]: [OptiFine] Mipmap levels: 5
[15:14:04] [Client thread/INFO]: [OptiFine] Multitexture: false
[15:14:05] [Client thread/INFO]: Created: 2048x2048 textures-atlas
[15:14:05] [Client thread/INFO]: [OptiFine] *** Reloading custom textures ***
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky1.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky2.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky3.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare2.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky4.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare1.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky5.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare3.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky6.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky7.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_box.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky8.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_clouds.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky9.properties
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/night_skybox.png
[15:14:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky10.properties
[15:14:05] [Client thread/INFO]: [OptiFine] Enable face culling: acacia_leaves, birch_leaves, dark_oak_leaves, jungle_leaves, oak_leaves, spruce_leaves
[15:14:11] [Server thread/INFO]: Starting integrated minecraft server version 1.8.8
[15:14:11] [Server thread/INFO]: Generating keypair
[15:14:12] [Server thread/INFO]: Preparing start region for level 0
[15:14:12] [Server thread/INFO]: Changing view distance to 8, from 10
[15:14:12] [Server thread/INFO]: Ntdi[local:E:76f9e1cb] logged in with entity id 97 at (733.1438735401466, 78.04097159015387, 375.5908084570898)
[15:14:12] [Server thread/INFO]: Ntdi joined the game
[15:14:13] [Client thread/INFO]: [CHAT] A new §eOptiFine§f version is available: §eHD Ultra I7§f
[15:15:22] [Server thread/INFO]: Ntdi has just earned the achievement [Taking Inventory]
[15:15:22] [Client thread/INFO]: [CHAT] Ntdi has just earned the achievement [Taking Inventory]
[15:16:05] [Server thread/INFO]: Saving and pausing game...
[15:16:05] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Overworld
[15:16:05] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Nether
[15:16:05] [Server thread/INFO]: Saving chunks for level 'mcpworld'/The End
[15:16:06] [Server thread/INFO]: Stopping server
[15:16:06] [Server thread/INFO]: Saving players
[15:16:06] [Server thread/INFO]: Saving worlds
[15:16:06] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Overworld
[15:16:06] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Nether
[15:16:06] [Server thread/INFO]: Saving chunks for level 'mcpworld'/The End
[15:16:08] [Client thread/INFO]: Stopping!
[15:16:08] [Client thread/INFO]: [Athena] Shutting down client
[15:16:08] [Client thread/INFO]: SoundSystem shutting down...
[15:16:08] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[20:59:00] [Client thread/INFO]: Setting user: Player334
[20:59:00] [Client thread/INFO]: (Session ID is token:0:Player334)
[20:59:01] [Client thread/INFO]: [OptiFine] *** Reflector Forge ***
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.Attributes
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.ChunkWatchEvent$UnWatch
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.relauncher.CoreModManager
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.DimensionManager
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Pre
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Post
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$CameraSetup
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogColors
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.EventBus
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event$Result
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.ExtendedBlockState
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.FMLClientHandler
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.FMLCommonHandler
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.biome.BiomeGenBase.getWaterColorMultiplier
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addDestroyEffects
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.addHitEffects
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canCreatureSpawn
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.canRenderInLayer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.doesSideBlockRendering
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getBedDirection
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.getExtendedState
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.hasTileEntity
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isAir
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBed
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isBedFoot
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.block.Block.isSideSolid
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.canRiderInteract
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.captureDrops
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraft.entity.Entity.capturedDrops
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRenderInPass
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.entity.Entity.shouldRiderSit
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getDurabilityForDisplay
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.getModel
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.onEntitySwing
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.shouldCauseReequipAnimation
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.Item.showDurabilityBar
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.item.ItemRecord.getRecordResource
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeModContainer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.potion.PotionEffect.isCurativeItem
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.canRenderBreaking
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.getRenderBoundingBox
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.hasFastRenderer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.tileentity.TileEntity.shouldRenderInPass
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.preDrawBatch
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.drawBatch
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.preDraw
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.client.renderer.vertex.VertexFormatElement$EnumUsage.postDraw
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.countEntities
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.World.getPerWorldStorage
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getCloudRenderer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getSkyRenderer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraft.world.WorldProvider.getWeatherRenderer
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.GuiModList
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.IColoredBakedQuad
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.property.IExtendedBlockState
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IRenderHandler
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ISmartBlockModel
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ItemModelMesherForge
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraft.launchwrapper.Launch
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.pipeline.LightUtil
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.MinecraftForgeClient
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ModelLoader
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderBlockOverlayEvent$OverlayType
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.registry.RenderingRegistry
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderItemInFrameEvent
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Pre
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Post
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Pre
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Specials$Post
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.SplashProgress
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.WorldEvent$Load
[20:59:01] [Client thread/INFO]: [OptiFine] *** Reflector Vanilla ***
[20:59:01] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: optifine.OptiFineClassTransformer
[20:59:02] [Client thread/ERROR]: [Athena] Failed to load resource outside namespace (C:\Users\nitro\OneDrive\Desktop\programming\AthenaClient\Athena-Client\workspace\.\assets\minecraft\Athena\gui\settings.png).javax.imageio.IIOException: Can't read input file!
[20:59:02] [Client thread/WARN]: [Athena] Tried accessing non-existing module: theme
[20:59:02] [Client thread/WARN]: [Athena] Loaded config default with left over setting theme which is no longer used.
[20:59:02] [Client thread/WARN]: [Athena] Tried accessing non-existing module: cape
[20:59:02] [Client thread/WARN]: [Athena] Loaded config default with left over setting cape which is no longer used.
[20:59:02] [Client thread/INFO]: [Athena] rip.athena.client.cosmetics.cape.Cape@2871ac91Minecon 2016Minecon 2016
[20:59:02] [Client thread/INFO]: LWJGL Version: 2.9.4
[20:59:03] [Client thread/INFO]: [OptiFine]
[20:59:03] [Client thread/INFO]: [OptiFine] OptiFine_1.8.8_HD_U_H8
[20:59:03] [Client thread/INFO]: [OptiFine] Build: null
[20:59:03] [Client thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0
[20:59:03] [Client thread/INFO]: [OptiFine] Java: 1.8.0_202, Oracle Corporation
[20:59:03] [Client thread/INFO]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
[20:59:03] [Client thread/INFO]: [OptiFine] LWJGL: 2.9.4
[20:59:03] [Client thread/INFO]: [OptiFine] OpenGL: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2, version 4.6.0 NVIDIA 536.23, NVIDIA Corporation
[20:59:03] [Client thread/INFO]: [OptiFine] OpenGL Version: 4.6.0
[20:59:03] [Client thread/INFO]: [OptiFine] Maximum texture size: 32768x32768
[20:59:03] [Thread-7/INFO]: [OptiFine] Checking for new version
[20:59:03] [Client thread/INFO]: [Shaders] ShadersMod version: 2.4.12
[20:59:03] [Client thread/INFO]: [Shaders] OpenGL Version: 4.6.0 NVIDIA 536.23
[20:59:03] [Client thread/INFO]: [Shaders] Vendor: NVIDIA Corporation
[20:59:03] [Client thread/INFO]: [Shaders] Renderer: NVIDIA GeForce RTX 2060 SUPER/PCIe/SSE2
[20:59:03] [Client thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0
[20:59:03] [Client thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8
[20:59:03] [Client thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8
[20:59:03] [Client thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32
[20:59:03] [Client thread/INFO]: [Shaders] Load ShadersMod configuration.
[20:59:03] [Client thread/INFO]: [Shaders] Shaders can not be loaded, Fast Render is enabled.
[20:59:03] [Client thread/INFO]: [Shaders] No shaderpack loaded.
[20:59:03] [Thread-7/INFO]: [OptiFine] Version found: I7
[20:59:03] [Client thread/INFO]: Reloading ResourceManager: Default, ! §bPotfast 5kay.zip
[20:59:03] [Client thread/INFO]: [OptiFine] *** Reloading textures ***
[20:59:03] [Client thread/INFO]: [OptiFine] Resource packs: ! §bPotfast 5kay.zip
[20:59:03] [Sound Library Loader/INFO]: Starting up SoundSystem...
[20:59:03] [Thread-8/INFO]: Initializing LWJGL OpenAL
[20:59:03] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[20:59:04] [Thread-8/INFO]: OpenAL initialized.
[20:59:04] [Sound Library Loader/INFO]: Sound engine started
[20:59:04] [Client thread/INFO]: [OptiFine] Sprite size: 32
[20:59:04] [Client thread/INFO]: [OptiFine] Mipmap levels: 5
[20:59:04] [Client thread/INFO]: [OptiFine] Multitexture: false
[20:59:05] [Client thread/INFO]: Created: 2048x2048 textures-atlas
[20:59:05] [Client thread/INFO]: [OptiFine] *** Reloading custom textures ***
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky1.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky2.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky3.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare2.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky4.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare1.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky5.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare3.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky6.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_sunflare.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky7.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_box.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky8.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/sky_clouds.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky9.properties
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky: Texture not found: minecraft:terrain/sky0/night_skybox.png
[20:59:05] [Client thread/INFO]: [OptiFine] CustomSky properties: mcpatcher/sky/world0/sky10.properties
[20:59:05] [Client thread/INFO]: [OptiFine] Enable face culling: acacia_leaves, birch_leaves, dark_oak_leaves, jungle_leaves, oak_leaves, spruce_leaves
[20:59:14] [Server thread/INFO]: Starting integrated minecraft server version 1.8.8
[20:59:14] [Server thread/INFO]: Generating keypair
[20:59:14] [Server thread/INFO]: Preparing start region for level 0
[20:59:14] [Server thread/INFO]: Changing view distance to 8, from 10
[20:59:15] [Server thread/INFO]: Ntdi[local:E:d84420ff] logged in with entity id 113 at (717.6292267862635, 69.0, 737.5033595310344)
[20:59:15] [Server thread/INFO]: Ntdi joined the game
[20:59:15] [Client thread/INFO]: [CHAT] A new §eOptiFine§f version is available: §eHD Ultra I7§f
[20:59:37] [Server thread/INFO]: <Ntdi> EZ
[20:59:37] [Client thread/INFO]: [CHAT] <Ntdi> EZ
[20:59:54] [Client thread/INFO]: Stopping!
[20:59:54] [Client thread/INFO]: [Athena] Shutting down client
[20:59:54] [Client thread/INFO]: SoundSystem shutting down...
[20:59:55] [Server thread/INFO]: Stopping server
[20:59:55] [Server thread/INFO]: Saving players
[20:59:55] [Server thread/INFO]: Saving worlds
[20:59:55] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Overworld
[20:59:55] [Server thread/INFO]: Saving chunks for level 'mcpworld'/Nether
[20:59:55] [Server thread/INFO]: Saving chunks for level 'mcpworld'/The End
[20:59:55] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

View File

@ -1 +1 @@
{"stat.chestOpened":1,"stat.walkOneCm":5758,"achievement.openInventory":2,"stat.leaveGame":2,"stat.useItem.minecraft.tnt":5,"stat.flyOneCm":78981,"stat.jump":74,"stat.useItem.minecraft.sand":2,"stat.playOneMinute":5377,"stat.damageDealt":10,"stat.crouchOneCm":123,"stat.timeSinceDeath":5377,"stat.sprintOneCm":2807,"achievement.exploreAllBiomes":{"value":0,"progress":["Beach","Ocean","Desert"]}}
{"stat.chestOpened":1,"stat.walkOneCm":41829,"achievement.openInventory":4,"stat.leaveGame":21,"stat.useItem.minecraft.tnt":18,"stat.mobKills":4,"stat.killEntity.Creeper":4,"stat.flyOneCm":297805,"stat.jump":737,"stat.useItem.minecraft.sand":169,"stat.playOneMinute":94692,"stat.damageDealt":10,"stat.crouchOneCm":123,"stat.timeSinceDeath":94692,"stat.sprintOneCm":30111,"achievement.exploreAllBiomes":{"value":0,"progress":["Beach","DesertHills","Ocean","River","Desert"]}}

View File

@ -27,6 +27,16 @@
"bindtype": "Toggle",
"enabled": false
},
"Minimal Bobbing": {
"settings": {
"Remove Screen Bobbing": true,
"Remove Hand Bobbing": true
},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"CPS": {
"settings": {
"Transparency": 255,
@ -76,16 +86,6 @@
"bindtype": "Toggle",
"enabled": false
},
"Minimal Bobbing": {
"settings": {
"Remove Screen Bobbing": true,
"Remove Hand Bobbing": true
},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"Fullbright": {
"settings": {},
"bind": 0,
@ -267,35 +267,12 @@
"bindtype": "Toggle",
"enabled": true
},
"TPS": {
"settings": {
"Custom Font": false,
"Background": true,
"Mode": "Number",
"Background Color": {
"red": 0,
"green": 0,
"blue": 0,
"alpha": 102
},
"Display Mode": "Modern",
"Preset Color": true,
"TPS Color": {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255
}
},
"HitDelayFix": {
"settings": {},
"bind": 0,
"hud": {"tps": {
"visible": true,
"x": 13,
"y": 6,
"scale": 1
}},
"hud": {},
"bindtype": "Toggle",
"enabled": false
"enabled": true
},
"Memory usage": {
"settings": {
@ -329,12 +306,35 @@
"bindtype": "Toggle",
"enabled": false
},
"HitDelayFix": {
"settings": {},
"TPS": {
"settings": {
"Custom Font": false,
"Background": true,
"Mode": "Number",
"Background Color": {
"red": 0,
"green": 0,
"blue": 0,
"alpha": 102
},
"Display Mode": "Modern",
"Preset Color": true,
"TPS Color": {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255
}
},
"bind": 0,
"hud": {},
"hud": {"tps": {
"visible": true,
"x": 13,
"y": 6,
"scale": 1
}},
"bindtype": "Toggle",
"enabled": true
"enabled": false
},
"Armor Status": {
"settings": {
@ -363,7 +363,10 @@
"enabled": false
},
"Chat": {
"settings": {"Infinite Chat": true},
"settings": {
"Background Opacity": 11,
"Infinite Chat": true
},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
@ -500,18 +503,6 @@
"bindtype": "Toggle",
"enabled": false
},
"Custom Hit Color": {
"settings": {"Hit Color": {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255
}},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"ToggleSprint": {
"settings": {
"Toggle Sprint": true,
@ -544,6 +535,18 @@
"scale": 1
}},
"bindtype": "Toggle",
"enabled": true
},
"Custom Hit Color": {
"settings": {"Hit Color": {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255
}},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"ItemPhysics": {
@ -648,13 +651,6 @@
"bindtype": "Toggle",
"enabled": false
},
"Nick Hider": {
"settings": {"Nick": "hello"},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"PackDisplay": {
"settings": {
"Transparency": 255,
@ -686,6 +682,13 @@
"bindtype": "Toggle",
"enabled": false
},
"Nick Hider": {
"settings": {"Nick": "hello"},
"bind": 0,
"hud": {},
"bindtype": "Toggle",
"enabled": false
},
"Reach Display": {
"settings": {
"Transparency": 255,
@ -724,7 +727,7 @@
"bindtype": "Toggle",
"enabled": true
},
"cape": "ziue's head",
"cape": "Minecon 2016",
"NoHurtCam": {
"settings": {},
"bind": 0,

File diff suppressed because one or more lines are too long