User Tutorial
@ -13,6 +13,7 @@ import net.silentclient.client.event.EventManager;
|
|||||||
import net.silentclient.client.event.EventTarget;
|
import net.silentclient.client.event.EventTarget;
|
||||||
import net.silentclient.client.event.impl.*;
|
import net.silentclient.client.event.impl.*;
|
||||||
import net.silentclient.client.gui.GuiError;
|
import net.silentclient.client.gui.GuiError;
|
||||||
|
import net.silentclient.client.gui.UserTutorial;
|
||||||
import net.silentclient.client.gui.font.SilentFontRenderer;
|
import net.silentclient.client.gui.font.SilentFontRenderer;
|
||||||
import net.silentclient.client.gui.lite.GuiNews;
|
import net.silentclient.client.gui.lite.GuiNews;
|
||||||
import net.silentclient.client.gui.lite.LiteMainMenu;
|
import net.silentclient.client.gui.lite.LiteMainMenu;
|
||||||
@ -209,6 +210,7 @@ public class Client {
|
|||||||
|
|
||||||
globalSettings.setConfig(new JSONObject(content.toString()).getString("config"));
|
globalSettings.setConfig(new JSONObject(content.toString()).getString("config"));
|
||||||
globalSettings.setLite(new JSONObject(content.toString()).getBoolean("lite"));
|
globalSettings.setLite(new JSONObject(content.toString()).getBoolean("lite"));
|
||||||
|
globalSettings.setDisplayedTutorial(new JSONObject(content.toString()).getBoolean("displayedTutorial"));
|
||||||
in.close();
|
in.close();
|
||||||
} catch (Exception err) {
|
} catch (Exception err) {
|
||||||
Client.logger.catching(err);
|
Client.logger.catching(err);
|
||||||
@ -309,6 +311,10 @@ public class Client {
|
|||||||
} else {
|
} else {
|
||||||
Minecraft.getMinecraft().displayGuiScreen(new SilentMainMenu());
|
Minecraft.getMinecraft().displayGuiScreen(new SilentMainMenu());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!globalSettings.displayedTutorial) {
|
||||||
|
Minecraft.getMinecraft().displayGuiScreen(new UserTutorial());
|
||||||
|
}
|
||||||
} catch(Exception err) {
|
} catch(Exception err) {
|
||||||
Client.logger.catching(err);
|
Client.logger.catching(err);
|
||||||
logger.info("STARTING > ERROR: " + err.getMessage());
|
logger.info("STARTING > ERROR: " + err.getMessage());
|
||||||
|
178
src/main/java/net/silentclient/client/gui/UserTutorial.java
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
package net.silentclient.client.gui;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.GuiButton;
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
|
import net.minecraft.util.ResourceLocation;
|
||||||
|
import net.silentclient.client.Client;
|
||||||
|
import net.silentclient.client.gui.elements.Button;
|
||||||
|
import net.silentclient.client.gui.font.SilentFontRenderer;
|
||||||
|
import net.silentclient.client.gui.lite.GuiNews;
|
||||||
|
import net.silentclient.client.gui.lite.clickgui.utils.MouseUtils;
|
||||||
|
import net.silentclient.client.gui.lite.clickgui.utils.RenderUtils;
|
||||||
|
import net.silentclient.client.gui.silentmainmenu.SilentMainMenu;
|
||||||
|
import net.silentclient.client.gui.util.RenderUtil;
|
||||||
|
import net.silentclient.client.utils.FileUtils;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
public class UserTutorial extends SilentScreen {
|
||||||
|
private int step = 1;
|
||||||
|
private ArrayList<String> configs = new ArrayList<>();
|
||||||
|
private int configIndex = 0;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void initGui() {
|
||||||
|
super.initGui();
|
||||||
|
this.configs.clear();
|
||||||
|
this.buttonList.clear();
|
||||||
|
Client.backgroundPanorama.updateWidthHeight(this.width, this.height);
|
||||||
|
int blockY = this.height / 2 - 90;
|
||||||
|
int blockX = this.width / 2 - 175;
|
||||||
|
if(blockY < 40) {
|
||||||
|
blockY = 40;
|
||||||
|
}
|
||||||
|
this.buttonList.add(new Button(1, blockX + (350 / 2) - 50, blockY + 180 - 35, 100, 20, "Get Started"));
|
||||||
|
this.configs.add("Bedwars");
|
||||||
|
this.configs.add("Minigames");
|
||||||
|
this.configs.add("PvP");
|
||||||
|
this.configs.add("Survival");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
|
||||||
|
GlStateManager.disableAlpha();
|
||||||
|
Client.backgroundPanorama.renderSkybox(mouseX, mouseY, partialTicks);
|
||||||
|
GlStateManager.enableAlpha();
|
||||||
|
this.drawGradientRect(0, 0, this.width, this.height, new Color(0, 0, 0, 127).getRGB(), new Color(0, 0, 0, 200).getRGB());
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/logos/logo.png"), this.width / 2 - 48.8F, 15, 97.7F, 19);
|
||||||
|
int blockY = this.height / 2 - 90;
|
||||||
|
int blockX = this.width / 2 - 175;
|
||||||
|
if(blockY < 40) {
|
||||||
|
blockY = 40;
|
||||||
|
}
|
||||||
|
RenderUtils.drawRect(blockX, blockY, 350, 180, new Color(20, 20, 20).getRGB());
|
||||||
|
super.drawScreen(mouseX, mouseY, partialTicks);
|
||||||
|
Client.getInstance().getSilentFontRenderer().drawCenteredString("Skip Tutorial", blockX + (350 / 2), blockY + 180 - 12, 10, SilentFontRenderer.FontType.TITLE);
|
||||||
|
switch (step) {
|
||||||
|
case 1:
|
||||||
|
this.buttonList.get(0).displayString = "Get Started";
|
||||||
|
|
||||||
|
Client.getInstance().getSilentFontRenderer().drawCenteredString("Welcome to Silent Client 2.0", blockX + (350 / 2), blockY + 3, 16, SilentFontRenderer.FontType.TITLE);
|
||||||
|
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/tutorial/features/feature1.png"), blockX + 132 - (86) - 10, blockY + 22, 86, 120);
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/tutorial/features/feature2.png"), blockX + 132, blockY + 22, 86, 120);
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/tutorial/features/feature3.png"), blockX + 132 + 86 + 10, blockY + 22, 86, 120);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
this.buttonList.get(0).displayString = "Next";
|
||||||
|
|
||||||
|
Client.getInstance().getSilentFontRenderer().drawCenteredString("Choose a version of Silent Client", blockX + (350 / 2), blockY + 3, 16, SilentFontRenderer.FontType.TITLE);
|
||||||
|
|
||||||
|
if(!Client.getInstance().getGlobalSettings().isLite()) {
|
||||||
|
RenderUtils.drawRect(blockX + 9, blockY + 29, 161, 102, -1);
|
||||||
|
}
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/tutorial/version/regular.png"), blockX + 10, blockY + 30, 159, 100);
|
||||||
|
|
||||||
|
if(Client.getInstance().getGlobalSettings().isLite()) {
|
||||||
|
RenderUtils.drawRect(blockX + 180, blockY + 29, 161, 102, -1);
|
||||||
|
}
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/tutorial/version/lite.png"), blockX + 181, blockY + 30, 159, 100);
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
this.buttonList.get(0).displayString = "Next";
|
||||||
|
|
||||||
|
Client.getInstance().getSilentFontRenderer().drawCenteredString("Choose a config preset", blockX + (350 / 2), blockY + 3, 16, SilentFontRenderer.FontType.TITLE);
|
||||||
|
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/icons/back.png"), blockX + 60, blockY + 35 + 50 - 10, 20, 20);
|
||||||
|
RenderUtil.drawImage(new ResourceLocation("silentclient/icons/next.png"), blockX + 95 + 159 + 15, blockY + 35 + 50 - 10, 20, 20);
|
||||||
|
|
||||||
|
Client.getInstance().getSilentFontRenderer().drawCenteredString(this.configs.get(configIndex), blockX + (350 / 2), blockY + 20, 12, SilentFontRenderer.FontType.TITLE);
|
||||||
|
RenderUtil.drawImage(new ResourceLocation(String.format("silentclient/configs/screenshots/%s.png", this.configs.get(configIndex))), blockX + 95, blockY + 35, 159, 100);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void actionPerformed(GuiButton button) throws IOException {
|
||||||
|
super.actionPerformed(button);
|
||||||
|
if(button.id == 1) {
|
||||||
|
switch (step) {
|
||||||
|
case 1:
|
||||||
|
step = 2;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
step = 3;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
try {
|
||||||
|
FileUtils.exportResource(String.format("/assets/minecraft/silentclient/configs/%s.txt", this.configs.get(configIndex)), String.format(Client.getInstance().dir.toString() + "/%s (Preset).txt", this.configs.get(configIndex)));
|
||||||
|
Client.getInstance().getConfigManager().loadConfig(String.format("%s (Preset).txt", this.configs.get(configIndex)));
|
||||||
|
} catch (Exception e) {
|
||||||
|
Client.logger.catching(e);
|
||||||
|
}
|
||||||
|
Client.getInstance().getGlobalSettings().setDisplayedTutorial(true);
|
||||||
|
Client.getInstance().getGlobalSettings().save();
|
||||||
|
mc.displayGuiScreen(Client.getInstance().getGlobalSettings().lite ? new GuiNews() : new SilentMainMenu());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
|
int blockY = this.height / 2 - 90;
|
||||||
|
int blockX = this.width / 2 - 175;
|
||||||
|
if(blockY < 40) {
|
||||||
|
blockY = 40;
|
||||||
|
}
|
||||||
|
if(MouseUtils.isInside(mouseX, mouseY, blockX + (350 / 2) - (Client.getInstance().getSilentFontRenderer().getStringWidth("Skip Tutorial", 10, SilentFontRenderer.FontType.TITLE) / 2), blockY + 180 - 12, Client.getInstance().getSilentFontRenderer().getStringWidth("Skip Tutorial", 10, SilentFontRenderer.FontType.TITLE), 10)) {
|
||||||
|
Client.getInstance().getGlobalSettings().setDisplayedTutorial(true);
|
||||||
|
Client.getInstance().getGlobalSettings().save();
|
||||||
|
mc.displayGuiScreen(Client.getInstance().getGlobalSettings().lite ? new GuiNews() : new SilentMainMenu());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (step) {
|
||||||
|
case 2:
|
||||||
|
if(MouseUtils.isInside(mouseX, mouseY, blockX + 10, blockY + 30, 159, 100)) {
|
||||||
|
Client.getInstance().getGlobalSettings().setLite(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if(MouseUtils.isInside(mouseX, mouseY, blockX + 181, blockY + 30, 159, 100)) {
|
||||||
|
Client.getInstance().getGlobalSettings().setLite(true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
if(MouseUtils.isInside(mouseX, mouseY, blockX + 60, blockY + 35 + 50 - 10, 20, 20)) {
|
||||||
|
if(configIndex == 0) {
|
||||||
|
this.configIndex = this.configs.size() - 1;
|
||||||
|
} else {
|
||||||
|
this.configIndex -= 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(MouseUtils.isInside(mouseX, mouseY, blockX + 95 + 159 + 15, blockY + 35 + 50 - 10, 20, 20)) {
|
||||||
|
if(configIndex == this.configs.size() - 1) {
|
||||||
|
this.configIndex = 0;
|
||||||
|
} else {
|
||||||
|
this.configIndex += 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateScreen() {
|
||||||
|
super.updateScreen();
|
||||||
|
Client.backgroundPanorama.tickPanorama();
|
||||||
|
}
|
||||||
|
}
|
@ -3,14 +3,14 @@ package net.silentclient.client.gui.lite;
|
|||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.client.gui.Gui;
|
import net.minecraft.client.gui.Gui;
|
||||||
import net.minecraft.client.gui.GuiButton;
|
import net.minecraft.client.gui.GuiButton;
|
||||||
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.util.ResourceLocation;
|
import net.minecraft.util.ResourceLocation;
|
||||||
import net.silentclient.client.Client;
|
import net.silentclient.client.Client;
|
||||||
import net.silentclient.client.gui.lite.clickgui.utils.MouseUtils;
|
import net.silentclient.client.gui.SilentScreen;
|
||||||
import net.silentclient.client.gui.elements.Button;
|
import net.silentclient.client.gui.elements.Button;
|
||||||
|
import net.silentclient.client.gui.lite.clickgui.utils.MouseUtils;
|
||||||
import net.silentclient.client.gui.util.RenderUtil;
|
import net.silentclient.client.gui.util.RenderUtil;
|
||||||
import net.silentclient.client.utils.SCTextureManager;
|
import net.silentclient.client.utils.SCTextureManager;
|
||||||
import net.silentclient.client.utils.TimerUtils;
|
import net.silentclient.client.utils.TimerUtils;
|
||||||
@ -21,7 +21,7 @@ import java.io.IOException;
|
|||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
public class GuiNews extends GuiScreen {
|
public class GuiNews extends SilentScreen {
|
||||||
public static ResourceLocation imageLocation = null;
|
public static ResourceLocation imageLocation = null;
|
||||||
public static BufferedImage image = null;
|
public static BufferedImage image = null;
|
||||||
public static boolean loading = false;
|
public static boolean loading = false;
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package net.silentclient.client.utils;
|
package net.silentclient.client.utils;
|
||||||
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.*;
|
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.client.renderer.texture.DynamicTexture;
|
import net.minecraft.client.renderer.texture.DynamicTexture;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.ResourceLocation;
|
||||||
|
import net.silentclient.client.Client;
|
||||||
|
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.io.*;
|
||||||
|
|
||||||
public class FileUtils {
|
public class FileUtils {
|
||||||
public static String readInputStream(InputStream inputStream) {
|
public static String readInputStream(InputStream inputStream) {
|
||||||
@ -38,4 +38,28 @@ public class FileUtils {
|
|||||||
|
|
||||||
return location;
|
return location;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void exportResource(String resourceName, String path) throws Exception {
|
||||||
|
InputStream stream = null;
|
||||||
|
OutputStream resStreamOut = null;
|
||||||
|
String jarFolder;
|
||||||
|
try {
|
||||||
|
stream = Client.getInstance().getClass().getResourceAsStream(resourceName);//note that each / is a directory down in the "jar tree" been the jar the root of the tree
|
||||||
|
if(stream == null) {
|
||||||
|
throw new Exception("Cannot get resource \"" + resourceName + "\" from Jar file.");
|
||||||
|
}
|
||||||
|
|
||||||
|
int readBytes;
|
||||||
|
byte[] buffer = new byte[4096];
|
||||||
|
resStreamOut = new FileOutputStream(path);
|
||||||
|
while ((readBytes = stream.read(buffer)) > 0) {
|
||||||
|
resStreamOut.write(buffer, 0, readBytes);
|
||||||
|
}
|
||||||
|
} catch (Exception ex) {
|
||||||
|
throw ex;
|
||||||
|
} finally {
|
||||||
|
stream.close();
|
||||||
|
resStreamOut.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,10 +7,12 @@ import java.io.FileOutputStream;
|
|||||||
public class GlobalSettings {
|
public class GlobalSettings {
|
||||||
public String config;
|
public String config;
|
||||||
public boolean lite;
|
public boolean lite;
|
||||||
|
public boolean displayedTutorial;
|
||||||
|
|
||||||
public GlobalSettings() {
|
public GlobalSettings() {
|
||||||
this.config = "config.txt";
|
this.config = "config.txt";
|
||||||
this.lite = false;
|
this.lite = false;
|
||||||
|
this.displayedTutorial = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getConfig() {
|
public String getConfig() {
|
||||||
@ -30,6 +32,14 @@ public class GlobalSettings {
|
|||||||
Client.getInstance().updateWindowTitle();
|
Client.getInstance().updateWindowTitle();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setDisplayedTutorial(boolean displayedTutorial) {
|
||||||
|
this.displayedTutorial = displayedTutorial;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDisplayedTutorial() {
|
||||||
|
return displayedTutorial;
|
||||||
|
}
|
||||||
|
|
||||||
public void save() {
|
public void save() {
|
||||||
try {
|
try {
|
||||||
FileOutputStream outputStream = new FileOutputStream(Client.getInstance().getGlobalSettingsFile());
|
FileOutputStream outputStream = new FileOutputStream(Client.getInstance().getGlobalSettingsFile());
|
||||||
|
@ -0,0 +1,407 @@
|
|||||||
|
MOD:FPS:true
|
||||||
|
POS:FPS:0.9078125:0.2
|
||||||
|
MOD:CPS:true
|
||||||
|
POS:CPS:0.9078125:0.24166666666666667
|
||||||
|
MOD:Toggle Sprint:false
|
||||||
|
POS:Toggle Sprint:0.0:0.0
|
||||||
|
MOD:Keystrokes:true
|
||||||
|
POS:Keystrokes:0.9078125:0.0
|
||||||
|
MOD:Perspective:false
|
||||||
|
MOD:Animations:true
|
||||||
|
MOD:Armor Status:false
|
||||||
|
POS:Armor Status:0.0:0.0
|
||||||
|
MOD:Memory:false
|
||||||
|
POS:Memory:0.0:0.0
|
||||||
|
MOD:Auto GG:false
|
||||||
|
MOD:Potion Hud:false
|
||||||
|
POS:Potion Hud:0.0:0.0
|
||||||
|
MOD:Ping:false
|
||||||
|
POS:Ping:0.0:0.0
|
||||||
|
MOD:Item Physics:false
|
||||||
|
MOD:Pack Display:false
|
||||||
|
POS:Pack Display:0.0:0.0
|
||||||
|
MOD:FullBright:false
|
||||||
|
MOD:Clock:false
|
||||||
|
POS:Clock:0.0:0.0
|
||||||
|
MOD:Speedometer:false
|
||||||
|
POS:Speedometer:0.0:0.0
|
||||||
|
MOD:Reach Display:false
|
||||||
|
POS:Reach Display:0.0:0.0
|
||||||
|
MOD:Day Counter:false
|
||||||
|
POS:Day Counter:0.0:0.0
|
||||||
|
MOD:Server Address:false
|
||||||
|
POS:Server Address:0.0:0.0
|
||||||
|
MOD:TNT Timer:false
|
||||||
|
MOD:Auto Tip:false
|
||||||
|
MOD:Level Head:false
|
||||||
|
MOD:Nick Hider:false
|
||||||
|
MOD:Time Changer:false
|
||||||
|
MOD:Zoom:false
|
||||||
|
MOD:Combo Counter:false
|
||||||
|
POS:Combo Counter:0.0:0.0
|
||||||
|
MOD:Hit Color:false
|
||||||
|
MOD:UHC Overlay:false
|
||||||
|
MOD:FPS Boost:false
|
||||||
|
MOD:Clear Glass:false
|
||||||
|
MOD:Crosshair:true
|
||||||
|
MOD:Cosmetics:false
|
||||||
|
MOD:General:false
|
||||||
|
MOD:Render:false
|
||||||
|
MOD:Weather:false
|
||||||
|
MOD:Tab:true
|
||||||
|
MOD:Chat:true
|
||||||
|
MOD:Inventory Blur:false
|
||||||
|
MOD:Coordinates:true
|
||||||
|
POS:Coordinates:0.0015625:0.002777777777777778
|
||||||
|
MOD:Chunk Borders:false
|
||||||
|
MOD:Hitboxes:false
|
||||||
|
MOD:Nametags:true
|
||||||
|
MOD:Scoreboard:true
|
||||||
|
MOD:Block Overlay:true
|
||||||
|
MOD:Particles:false
|
||||||
|
MOD:Damage Tint:false
|
||||||
|
MOD:Titles:true
|
||||||
|
MOD:Color Saturation:false
|
||||||
|
MOD:Auto Text:false
|
||||||
|
MOD:Boss Bar:true
|
||||||
|
MOD:ToggleChat:false
|
||||||
|
MOD:Pack Tweaks:false
|
||||||
|
MOD:Player Counter:false
|
||||||
|
POS:Player Counter:0.0:0.0
|
||||||
|
MOD:BlockInfo:false
|
||||||
|
POS:BlockInfo:0.0:0.0
|
||||||
|
MOD:Motion Blur:false
|
||||||
|
SET:Scale:FPS:3.0
|
||||||
|
SET:Background:FPS:true
|
||||||
|
SET:Background Color:FPS:-16777216:false:127
|
||||||
|
SET:Color:FPS:-1:false:255
|
||||||
|
SET:Font Shadow:FPS:true
|
||||||
|
SET:Brackets:FPS:false
|
||||||
|
SET:Fancy Font:FPS:false
|
||||||
|
SET:Text After Value:FPS:FPS
|
||||||
|
SET:Scale:CPS:3.0
|
||||||
|
SET:Background:CPS:true
|
||||||
|
SET:Background Color:CPS:-16777216:false:127
|
||||||
|
SET:Color:CPS:-1:false:255
|
||||||
|
SET:Font Shadow:CPS:true
|
||||||
|
SET:Brackets:CPS:false
|
||||||
|
SET:Fancy Font:CPS:false
|
||||||
|
SET:Text After Value:CPS:CPS
|
||||||
|
SET:CPS Type:CPS:LMB
|
||||||
|
SET:Remove CPS Text:CPS:false
|
||||||
|
SET:Scale:Toggle Sprint:2.0
|
||||||
|
SET:Background:Toggle Sprint:false
|
||||||
|
SET:Background Color:Toggle Sprint:-16777216:false:127
|
||||||
|
SET:Color:Toggle Sprint:-1:false:255
|
||||||
|
SET:Font Shadow:Toggle Sprint:true
|
||||||
|
SET:Brackets:Toggle Sprint:true
|
||||||
|
SET:Fancy Font:Toggle Sprint:false
|
||||||
|
SET:Sprint Mode:Toggle Sprint:Toggle
|
||||||
|
SET:Sprinting Text:Toggle Sprint:Sprinting
|
||||||
|
SET:Show HUD Text:Toggle Sprint:true
|
||||||
|
SET:Scale:Keystrokes:3.0
|
||||||
|
SET:Font Shadow:Keystrokes:true
|
||||||
|
SET:Fancy Font:Keystrokes:false
|
||||||
|
SET:Background:Keystrokes:true
|
||||||
|
SET:Color:Keystrokes:-1:false:255
|
||||||
|
SET:Background Color:Keystrokes:-16777216:false:127
|
||||||
|
SET:Clicked Color:Keystrokes:-16777216:false:255
|
||||||
|
SET:Clicked Background Color:Keystrokes:-1:false:127
|
||||||
|
SET:Fade Delay:Keystrokes:100.0
|
||||||
|
SET:Show LMB/RMB:Keystrokes:true
|
||||||
|
SET:Show CPS:Keystrokes:false
|
||||||
|
SET:Show Space:Keystrokes:true
|
||||||
|
SET:Replace Names With Arrow:Keystrokes:false
|
||||||
|
SET:1.7 Item Positions:Animations:true
|
||||||
|
SET:1.7 Bow Pullback:Animations:true
|
||||||
|
SET:1.7 Block Animation:Animations:true
|
||||||
|
SET:1.7 Rod Position:Animations:true
|
||||||
|
SET:1.7 Punching Animation:Animations:true
|
||||||
|
SET:1.7 Eating & Drinking Animation:Animations:true
|
||||||
|
SET:1.7 Block-Hitting Animation:Animations:true
|
||||||
|
SET:1.7 Item Switching Animation:Animations:true
|
||||||
|
SET:1.7 Throwing:Animations:true
|
||||||
|
SET:1.7 Enchant Glint:Animations:true
|
||||||
|
SET:1.7 Skins:Animations:false
|
||||||
|
SET:Smooth Sneaking:Animations:true
|
||||||
|
SET:No Shaking:Animations:true
|
||||||
|
SET:Scale:Armor Status:3.0
|
||||||
|
SET:Orientation:Armor Status:Vertical
|
||||||
|
SET:Font Shadow:Armor Status:true
|
||||||
|
SET:Show Percentage:Armor Status:true
|
||||||
|
SET:Percentage Color:Armor Status:-1:false:255
|
||||||
|
SET:Fancy Font:Armor Status:false
|
||||||
|
SET:Scale:Memory:3.0
|
||||||
|
SET:Background:Memory:true
|
||||||
|
SET:Background Color:Memory:-16777216:false:127
|
||||||
|
SET:Color:Memory:-1:false:255
|
||||||
|
SET:Font Shadow:Memory:true
|
||||||
|
SET:Brackets:Memory:false
|
||||||
|
SET:Fancy Font:Memory:false
|
||||||
|
SET:Text After Value:Memory:Mem
|
||||||
|
SET:Phrase:Auto GG:gg
|
||||||
|
SET:Scale:Potion Hud:3.0
|
||||||
|
SET:Font Shadow:Potion Hud:true
|
||||||
|
SET:Fancy Font:Potion Hud:false
|
||||||
|
SET:Show Potion Name:Potion Hud:true
|
||||||
|
SET:Potion Name Color:Potion Hud:-1:false:255
|
||||||
|
SET:Show Duration:Potion Hud:true
|
||||||
|
SET:Duration Color:Potion Hud:-6513257:false:255
|
||||||
|
SET:Potions In Inventory:Potion Hud:true
|
||||||
|
SET:Scale:Ping:3.0
|
||||||
|
SET:Background:Ping:true
|
||||||
|
SET:Background Color:Ping:-16777216:false:127
|
||||||
|
SET:Color:Ping:-1:false:255
|
||||||
|
SET:Font Shadow:Ping:true
|
||||||
|
SET:Brackets:Ping:false
|
||||||
|
SET:Fancy Font:Ping:false
|
||||||
|
SET:Text After Value:Ping:ms
|
||||||
|
SET:Speed:Item Physics:1.0
|
||||||
|
SET:Scale:Pack Display:3.0
|
||||||
|
SET:Background:Pack Display:true
|
||||||
|
SET:Background Color:Pack Display:-16777216:false:127
|
||||||
|
SET:Color:Pack Display:-1:false:255
|
||||||
|
SET:Font Shadow:Pack Display:true
|
||||||
|
SET:Brackets:Pack Display:false
|
||||||
|
SET:Fancy Font:Pack Display:false
|
||||||
|
SET:Text After Value:Pack Display:
|
||||||
|
SET:Pack Icon:Pack Display:true
|
||||||
|
SET:Pack Order:Pack Display:First Pack
|
||||||
|
SET:Pack Title Replacement:Pack Display:White Text Only
|
||||||
|
SET:Scale:Clock:3.0
|
||||||
|
SET:Background:Clock:true
|
||||||
|
SET:Background Color:Clock:-16777216:false:127
|
||||||
|
SET:Color:Clock:-1:false:255
|
||||||
|
SET:Font Shadow:Clock:true
|
||||||
|
SET:Brackets:Clock:false
|
||||||
|
SET:Fancy Font:Clock:false
|
||||||
|
SET:Text After Value:Clock:
|
||||||
|
SET:24 Hour Format:Clock:false
|
||||||
|
SET:Scale:Speedometer:3.0
|
||||||
|
SET:Background:Speedometer:true
|
||||||
|
SET:Background Color:Speedometer:-16777216:false:127
|
||||||
|
SET:Color:Speedometer:-1:false:255
|
||||||
|
SET:Font Shadow:Speedometer:true
|
||||||
|
SET:Brackets:Speedometer:false
|
||||||
|
SET:Fancy Font:Speedometer:false
|
||||||
|
SET:Text After Value:Speedometer:m/s
|
||||||
|
SET:Scale:Reach Display:3.0
|
||||||
|
SET:Background:Reach Display:true
|
||||||
|
SET:Background Color:Reach Display:-16777216:false:127
|
||||||
|
SET:Color:Reach Display:-1:false:255
|
||||||
|
SET:Font Shadow:Reach Display:true
|
||||||
|
SET:Brackets:Reach Display:false
|
||||||
|
SET:Fancy Font:Reach Display:false
|
||||||
|
SET:Text After Value:Reach Display:blocks
|
||||||
|
SET:Scale:Day Counter:3.0
|
||||||
|
SET:Background:Day Counter:true
|
||||||
|
SET:Background Color:Day Counter:-16777216:false:127
|
||||||
|
SET:Color:Day Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Day Counter:true
|
||||||
|
SET:Brackets:Day Counter:false
|
||||||
|
SET:Fancy Font:Day Counter:false
|
||||||
|
SET:Text After Value:Day Counter:Days
|
||||||
|
SET:Scale:Server Address:3.0
|
||||||
|
SET:Background:Server Address:true
|
||||||
|
SET:Background Color:Server Address:-16777216:false:127
|
||||||
|
SET:Color:Server Address:-1:false:255
|
||||||
|
SET:Font Shadow:Server Address:true
|
||||||
|
SET:Brackets:Server Address:false
|
||||||
|
SET:Fancy Font:Server Address:false
|
||||||
|
SET:Text After Value:Server Address:
|
||||||
|
SET:Hide Your Name:Nick Hider:true
|
||||||
|
SET:Hide Skins:Nick Hider:false
|
||||||
|
SET:Use Own Skin For All:Nick Hider:false
|
||||||
|
SET:Use Real Skin For Self:Nick Hider:true
|
||||||
|
SET:Custom Name:Nick Hider:You
|
||||||
|
SET:Time:Time Changer:0.0
|
||||||
|
SET:Scroll:Zoom:false
|
||||||
|
SET:Smooth Zoom:Zoom:true
|
||||||
|
SET:Zoom Speed:Zoom:14.0
|
||||||
|
SET:Factor:Zoom:4.0
|
||||||
|
SET:Smooth Camera:Zoom:true
|
||||||
|
SET:Scale:Combo Counter:3.0
|
||||||
|
SET:Background:Combo Counter:true
|
||||||
|
SET:Background Color:Combo Counter:-16777216:false:127
|
||||||
|
SET:Color:Combo Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Combo Counter:true
|
||||||
|
SET:Brackets:Combo Counter:false
|
||||||
|
SET:Fancy Font:Combo Counter:false
|
||||||
|
SET:Text After Value:Combo Counter:Combo
|
||||||
|
SET:Alpha:Hit Color:0.8
|
||||||
|
SET:Gold Ingot Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Nugget Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Ore Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Apple Scale:UHC Overlay:1.5
|
||||||
|
SET:Skull Scale:UHC Overlay:1.5
|
||||||
|
SET:FPS Boost:FPS Boost:true
|
||||||
|
SET:Advanced FPS Boost:FPS Boost:false
|
||||||
|
SET:Low Graphics Mode:FPS Boost:false
|
||||||
|
SET:Hud Optimization:FPS Boost:false
|
||||||
|
SET:Optimized Entity Movement:FPS Boost:true
|
||||||
|
SET:Lazy Chunk Loading:FPS Boost:Balance
|
||||||
|
SET:Occlusion Culling:FPS Boost:Balance
|
||||||
|
SET:Hide Tall Grass:FPS Boost:false
|
||||||
|
SET:Hide Flowers:FPS Boost:false
|
||||||
|
SET:Hide Fences:FPS Boost:false
|
||||||
|
SET:Hide Fence Gates:FPS Boost:false
|
||||||
|
SET:Hide Armor Stands:FPS Boost:false
|
||||||
|
SET:Hide Skulls:FPS Boost:false
|
||||||
|
SET:Hide Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Maps In Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Stuck Arrows:FPS Boost:false
|
||||||
|
SET:Hide Ground Arrows:FPS Boost:false
|
||||||
|
SET:Hide Lava Particles:FPS Boost:false
|
||||||
|
SET:Hide Mob in Spawner:FPS Boost:false
|
||||||
|
SET:Hide Spawner Particles:FPS Boost:false
|
||||||
|
SET:Player Render Distance:FPS Boost:64.0
|
||||||
|
SET:Passive Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Hostile Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Misc. Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Check glError:FPS Boost:false
|
||||||
|
SET:Do memory debug:FPS Boost:true
|
||||||
|
SET:Preset Crosshair:Crosshair:false
|
||||||
|
SET:Preset ID:Crosshair:1
|
||||||
|
SET:Type:Crosshair:Cross
|
||||||
|
SET:Crosshair Color:Crosshair:-1:false:255
|
||||||
|
SET:Player Color:Crosshair:-5231066:false:255
|
||||||
|
SET:Hostile Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Passive Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Outline Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Dot Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Width:Crosshair:3.0
|
||||||
|
SET:Height:Crosshair:3.0
|
||||||
|
SET:Gap:Crosshair:1.0
|
||||||
|
SET:Thickness:Crosshair:1.0
|
||||||
|
SET:Scale:Crosshair:1.0
|
||||||
|
SET:Highlight Hostile Mobs:Crosshair:false
|
||||||
|
SET:Highlight Passive Mobs:Crosshair:false
|
||||||
|
SET:Highlight Players:Crosshair:false
|
||||||
|
SET:Crosshair Outline:Crosshair:false
|
||||||
|
SET:Crosshair Dot:Crosshair:false
|
||||||
|
SET:Vanilla Blendering:Crosshair:true
|
||||||
|
SET:Capes:Cosmetics:true
|
||||||
|
SET:Cape Type:Cosmetics:Dynamic Curved
|
||||||
|
SET:Cape Shoulders:Cosmetics:true
|
||||||
|
SET:Wings:Cosmetics:true
|
||||||
|
SET:Wings Scale:Cosmetics:1.0
|
||||||
|
SET:Bandanas:Cosmetics:true
|
||||||
|
SET:Hats:Cosmetics:true
|
||||||
|
SET:Shields:Cosmetics:true
|
||||||
|
SET:Custom Skins:Cosmetics:true
|
||||||
|
SET:Gui Debug:General:false
|
||||||
|
SET:Hide mods in F3:General:true
|
||||||
|
SET:Vanilla ESC Menu Layout:General:false
|
||||||
|
SET:Menu Background Blur:General:true
|
||||||
|
SET:Silent Logo Location:General:Bottom Right Corner
|
||||||
|
SET:Silent Button Sounds:General:false
|
||||||
|
SET:Menu Animations:General:true
|
||||||
|
SET:Menu Animations Speed:General:300.0
|
||||||
|
SET:Crosshair in F5:Render:false
|
||||||
|
SET:Centered Potion Inventory:Render:true
|
||||||
|
SET:Disable Achievements:Render:false
|
||||||
|
SET:Model Bobbing Only:Render:false
|
||||||
|
SET:Borderless Fullscreen:Render:false
|
||||||
|
SET:Weather:Weather:Clear
|
||||||
|
SET:Play Thunder Sound:Weather:true
|
||||||
|
SET:Background:Tab:true
|
||||||
|
SET:Disable Header:Tab:false
|
||||||
|
SET:Disable Footer:Tab:false
|
||||||
|
SET:Show Ping Numbers:Tab:true
|
||||||
|
SET:Show Nametag Icons:Tab:true
|
||||||
|
SET:Font Shadow:Chat:true
|
||||||
|
SET:Bar Animation:Chat:false
|
||||||
|
SET:Smooth:Chat:false
|
||||||
|
SET:Smooth Speed:Chat:4.0
|
||||||
|
SET:Disable Background:Chat:true
|
||||||
|
SET:Anti-Spam:Chat:false
|
||||||
|
SET:Dark Background:Inventory Blur:false
|
||||||
|
SET:Scale:Coordinates:3.0
|
||||||
|
SET:Background:Coordinates:true
|
||||||
|
SET:Background Color:Coordinates:-16777216:false:127
|
||||||
|
SET:Color:Coordinates:-1:false:255
|
||||||
|
SET:Font Shadow:Coordinates:true
|
||||||
|
SET:Brackets:Coordinates:false
|
||||||
|
SET:Fancy Font:Coordinates:false
|
||||||
|
SET:Show Biome:Coordinates:true
|
||||||
|
SET:Bounding Box:Hitboxes:true
|
||||||
|
SET:Bounding Box Color:Hitboxes:-1:false:255
|
||||||
|
SET:Eye Height:Hitboxes:false
|
||||||
|
SET:Eye Height Color:Hitboxes:-5231066:false:255
|
||||||
|
SET:Look Vector:Hitboxes:false
|
||||||
|
SET:Look Vector Color:Hitboxes:-12827479:false:255
|
||||||
|
SET:Line Width:Hitboxes:2.0
|
||||||
|
SET:Projectile Hitbox:Hitboxes:true
|
||||||
|
SET:Arrow Hitbox:Hitboxes:true
|
||||||
|
SET:Players Hitbox:Hitboxes:true
|
||||||
|
SET:Passive Hitbox:Hitboxes:true
|
||||||
|
SET:Monsters Hitbox:Hitboxes:true
|
||||||
|
SET:Fireballs Hitbox:Hitboxes:true
|
||||||
|
SET:Snowballs Hitbox:Hitboxes:true
|
||||||
|
SET:Wither Skulls Hitbox:Hitboxes:true
|
||||||
|
SET:Item Drops Hitbox:Hitboxes:true
|
||||||
|
SET:Fireworks Hitbox:Hitboxes:true
|
||||||
|
SET:XP Orbs Hitbox:Hitboxes:true
|
||||||
|
SET:Item Frames Hitbox:Hitboxes:true
|
||||||
|
SET:Show in F5:Nametags:true
|
||||||
|
SET:Show in F1:Nametags:false
|
||||||
|
SET:Background:Nametags:true
|
||||||
|
SET:Font Shadow:Nametags:false
|
||||||
|
SET:Show Nametag Icons:Nametags:true
|
||||||
|
SET:Show Nametag Messages:Nametags:true
|
||||||
|
SET:Scale:Scoreboard:1.0
|
||||||
|
SET:Background:Scoreboard:true
|
||||||
|
SET:Font Shadow:Scoreboard:true
|
||||||
|
SET:Numbers:Scoreboard:false
|
||||||
|
SET:Outline:Block Overlay:true
|
||||||
|
SET:Outline Color:Block Overlay:-1:false:255
|
||||||
|
SET:Outline Width:Block Overlay:3.0
|
||||||
|
SET:Fill:Block Overlay:true
|
||||||
|
SET:Fill Color:Block Overlay:-1:false:56
|
||||||
|
SET:Show Sharpness:Particles:true
|
||||||
|
SET:Always Sharpness Particles:Particles:false
|
||||||
|
SET:Sharpness Multiplier:Particles:1.0
|
||||||
|
SET:Show Criticals:Particles:true
|
||||||
|
SET:Criticals Multiplier:Particles:1.0
|
||||||
|
SET:Only Players Particles:Particles:false
|
||||||
|
SET:Cancel Impossible:Particles:false
|
||||||
|
SET:New Particles For Impossibles:Particles:false
|
||||||
|
SET:Health:Damage Tint:5.0
|
||||||
|
SET:Scale:Titles:1.0
|
||||||
|
SET:Amount:Color Saturation:1.0
|
||||||
|
SET:Boss Bar:Boss Bar:true
|
||||||
|
SET:Boss Text:Boss Bar:true
|
||||||
|
SET:Hide Direct Messages:ToggleChat:false
|
||||||
|
SET:Hide Shout Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Team Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Messages (Excludes Team Chat):ToggleChat:false
|
||||||
|
SET:Hide Friend Join/Leave Message:ToggleChat:false
|
||||||
|
SET:Hide Friend Requests:ToggleChat:false
|
||||||
|
SET:Hide Guild Messages:ToggleChat:false
|
||||||
|
SET:Hide Guild Join/Leave Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Invites:ToggleChat:false
|
||||||
|
SET:Hide Lobby Join Messages:ToggleChat:false
|
||||||
|
SET:Fire Height:Pack Tweaks:0.0
|
||||||
|
SET:Fire Opacity:Pack Tweaks:0.8999999761581421
|
||||||
|
SET:Hide Pumpkin Overlay:Pack Tweaks:false
|
||||||
|
SET:Water Fog:Pack Tweaks:true
|
||||||
|
SET:Scale:Player Counter:3.0
|
||||||
|
SET:Background:Player Counter:true
|
||||||
|
SET:Background Color:Player Counter:-16777216:false:127
|
||||||
|
SET:Color:Player Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Player Counter:true
|
||||||
|
SET:Brackets:Player Counter:false
|
||||||
|
SET:Fancy Font:Player Counter:false
|
||||||
|
SET:Text After Value:Player Counter:Players Online
|
||||||
|
SET:Scale:BlockInfo:3.0
|
||||||
|
SET:Block Coords:BlockInfo:true
|
||||||
|
SET:Correct Tool:BlockInfo:true
|
||||||
|
SET:Break Time:BlockInfo:true
|
||||||
|
SET:Background:BlockInfo:true
|
||||||
|
SET:Background Color:BlockInfo:-16777216:false:127
|
||||||
|
SET:Color:BlockInfo:-1:false:255
|
||||||
|
SET:Font Shadow:BlockInfo:true
|
||||||
|
SET:Fancy Font:BlockInfo:false
|
||||||
|
SET:Amount:Motion Blur:0.5
|
||||||
|
ATC:/play solo_insane:13
|
@ -0,0 +1,407 @@
|
|||||||
|
MOD:FPS:false
|
||||||
|
POS:FPS:0.0:0.0
|
||||||
|
MOD:CPS:false
|
||||||
|
POS:CPS:0.0:0.0
|
||||||
|
MOD:Toggle Sprint:false
|
||||||
|
POS:Toggle Sprint:0.0:0.0
|
||||||
|
MOD:Keystrokes:false
|
||||||
|
POS:Keystrokes:0.0:0.0
|
||||||
|
MOD:Perspective:false
|
||||||
|
MOD:Animations:true
|
||||||
|
MOD:Armor Status:false
|
||||||
|
POS:Armor Status:0.0:0.0
|
||||||
|
MOD:Memory:false
|
||||||
|
POS:Memory:0.0:0.0
|
||||||
|
MOD:Auto GG:false
|
||||||
|
MOD:Potion Hud:false
|
||||||
|
POS:Potion Hud:0.0:0.0
|
||||||
|
MOD:Ping:false
|
||||||
|
POS:Ping:0.0:0.0
|
||||||
|
MOD:Item Physics:false
|
||||||
|
MOD:Pack Display:false
|
||||||
|
POS:Pack Display:0.0:0.0
|
||||||
|
MOD:FullBright:false
|
||||||
|
MOD:Clock:false
|
||||||
|
POS:Clock:0.0:0.0
|
||||||
|
MOD:Speedometer:false
|
||||||
|
POS:Speedometer:0.0:0.0
|
||||||
|
MOD:Reach Display:false
|
||||||
|
POS:Reach Display:0.0:0.0
|
||||||
|
MOD:Day Counter:false
|
||||||
|
POS:Day Counter:0.0:0.0
|
||||||
|
MOD:Server Address:false
|
||||||
|
POS:Server Address:0.0:0.0
|
||||||
|
MOD:TNT Timer:false
|
||||||
|
MOD:Auto Tip:false
|
||||||
|
MOD:Level Head:false
|
||||||
|
MOD:Nick Hider:false
|
||||||
|
MOD:Time Changer:false
|
||||||
|
MOD:Zoom:false
|
||||||
|
MOD:Combo Counter:false
|
||||||
|
POS:Combo Counter:0.0:0.0
|
||||||
|
MOD:Hit Color:false
|
||||||
|
MOD:UHC Overlay:false
|
||||||
|
MOD:FPS Boost:false
|
||||||
|
MOD:Clear Glass:false
|
||||||
|
MOD:Crosshair:false
|
||||||
|
MOD:Cosmetics:false
|
||||||
|
MOD:General:false
|
||||||
|
MOD:Render:false
|
||||||
|
MOD:Weather:false
|
||||||
|
MOD:Tab:true
|
||||||
|
MOD:Chat:true
|
||||||
|
MOD:Inventory Blur:false
|
||||||
|
MOD:Coordinates:true
|
||||||
|
POS:Coordinates:0.0015625:0.002777777777777778
|
||||||
|
MOD:Chunk Borders:false
|
||||||
|
MOD:Hitboxes:false
|
||||||
|
MOD:Nametags:true
|
||||||
|
MOD:Scoreboard:true
|
||||||
|
MOD:Block Overlay:false
|
||||||
|
MOD:Particles:false
|
||||||
|
MOD:Damage Tint:false
|
||||||
|
MOD:Titles:true
|
||||||
|
MOD:Color Saturation:false
|
||||||
|
MOD:Auto Text:false
|
||||||
|
MOD:Boss Bar:true
|
||||||
|
MOD:ToggleChat:false
|
||||||
|
MOD:Pack Tweaks:false
|
||||||
|
MOD:Player Counter:false
|
||||||
|
POS:Player Counter:0.0:0.0
|
||||||
|
MOD:BlockInfo:false
|
||||||
|
POS:BlockInfo:0.0:0.0
|
||||||
|
MOD:Motion Blur:false
|
||||||
|
SET:Scale:FPS:3.0
|
||||||
|
SET:Background:FPS:true
|
||||||
|
SET:Background Color:FPS:-16777216:false:127
|
||||||
|
SET:Color:FPS:-1:false:255
|
||||||
|
SET:Font Shadow:FPS:true
|
||||||
|
SET:Brackets:FPS:false
|
||||||
|
SET:Fancy Font:FPS:false
|
||||||
|
SET:Text After Value:FPS:FPS
|
||||||
|
SET:Scale:CPS:3.0
|
||||||
|
SET:Background:CPS:true
|
||||||
|
SET:Background Color:CPS:-16777216:false:127
|
||||||
|
SET:Color:CPS:-1:false:255
|
||||||
|
SET:Font Shadow:CPS:true
|
||||||
|
SET:Brackets:CPS:false
|
||||||
|
SET:Fancy Font:CPS:false
|
||||||
|
SET:Text After Value:CPS:CPS
|
||||||
|
SET:CPS Type:CPS:LMB
|
||||||
|
SET:Remove CPS Text:CPS:false
|
||||||
|
SET:Scale:Toggle Sprint:2.0
|
||||||
|
SET:Background:Toggle Sprint:false
|
||||||
|
SET:Background Color:Toggle Sprint:-16777216:false:127
|
||||||
|
SET:Color:Toggle Sprint:-1:false:255
|
||||||
|
SET:Font Shadow:Toggle Sprint:true
|
||||||
|
SET:Brackets:Toggle Sprint:true
|
||||||
|
SET:Fancy Font:Toggle Sprint:false
|
||||||
|
SET:Sprint Mode:Toggle Sprint:Toggle
|
||||||
|
SET:Sprinting Text:Toggle Sprint:Sprinting
|
||||||
|
SET:Show HUD Text:Toggle Sprint:true
|
||||||
|
SET:Scale:Keystrokes:3.0
|
||||||
|
SET:Font Shadow:Keystrokes:true
|
||||||
|
SET:Fancy Font:Keystrokes:false
|
||||||
|
SET:Background:Keystrokes:true
|
||||||
|
SET:Color:Keystrokes:-1:false:255
|
||||||
|
SET:Background Color:Keystrokes:-16777216:false:127
|
||||||
|
SET:Clicked Color:Keystrokes:-16777216:false:255
|
||||||
|
SET:Clicked Background Color:Keystrokes:-1:false:127
|
||||||
|
SET:Fade Delay:Keystrokes:100.0
|
||||||
|
SET:Show LMB/RMB:Keystrokes:true
|
||||||
|
SET:Show CPS:Keystrokes:true
|
||||||
|
SET:Show Space:Keystrokes:true
|
||||||
|
SET:Replace Names With Arrow:Keystrokes:false
|
||||||
|
SET:1.7 Item Positions:Animations:true
|
||||||
|
SET:1.7 Bow Pullback:Animations:true
|
||||||
|
SET:1.7 Block Animation:Animations:true
|
||||||
|
SET:1.7 Rod Position:Animations:true
|
||||||
|
SET:1.7 Punching Animation:Animations:true
|
||||||
|
SET:1.7 Eating & Drinking Animation:Animations:true
|
||||||
|
SET:1.7 Block-Hitting Animation:Animations:true
|
||||||
|
SET:1.7 Item Switching Animation:Animations:true
|
||||||
|
SET:1.7 Throwing:Animations:true
|
||||||
|
SET:1.7 Enchant Glint:Animations:true
|
||||||
|
SET:1.7 Skins:Animations:false
|
||||||
|
SET:Smooth Sneaking:Animations:true
|
||||||
|
SET:No Shaking:Animations:true
|
||||||
|
SET:Scale:Armor Status:3.0
|
||||||
|
SET:Orientation:Armor Status:Vertical
|
||||||
|
SET:Font Shadow:Armor Status:true
|
||||||
|
SET:Show Percentage:Armor Status:true
|
||||||
|
SET:Percentage Color:Armor Status:-1:false:255
|
||||||
|
SET:Fancy Font:Armor Status:false
|
||||||
|
SET:Scale:Memory:3.0
|
||||||
|
SET:Background:Memory:true
|
||||||
|
SET:Background Color:Memory:-16777216:false:127
|
||||||
|
SET:Color:Memory:-1:false:255
|
||||||
|
SET:Font Shadow:Memory:true
|
||||||
|
SET:Brackets:Memory:false
|
||||||
|
SET:Fancy Font:Memory:false
|
||||||
|
SET:Text After Value:Memory:Mem
|
||||||
|
SET:Phrase:Auto GG:gg
|
||||||
|
SET:Scale:Potion Hud:3.0
|
||||||
|
SET:Font Shadow:Potion Hud:true
|
||||||
|
SET:Fancy Font:Potion Hud:false
|
||||||
|
SET:Show Potion Name:Potion Hud:true
|
||||||
|
SET:Potion Name Color:Potion Hud:-1:false:255
|
||||||
|
SET:Show Duration:Potion Hud:true
|
||||||
|
SET:Duration Color:Potion Hud:-6513257:false:255
|
||||||
|
SET:Potions In Inventory:Potion Hud:true
|
||||||
|
SET:Scale:Ping:3.0
|
||||||
|
SET:Background:Ping:true
|
||||||
|
SET:Background Color:Ping:-16777216:false:127
|
||||||
|
SET:Color:Ping:-1:false:255
|
||||||
|
SET:Font Shadow:Ping:true
|
||||||
|
SET:Brackets:Ping:false
|
||||||
|
SET:Fancy Font:Ping:false
|
||||||
|
SET:Text After Value:Ping:ms
|
||||||
|
SET:Speed:Item Physics:1.0
|
||||||
|
SET:Scale:Pack Display:3.0
|
||||||
|
SET:Background:Pack Display:true
|
||||||
|
SET:Background Color:Pack Display:-16777216:false:127
|
||||||
|
SET:Color:Pack Display:-1:false:255
|
||||||
|
SET:Font Shadow:Pack Display:true
|
||||||
|
SET:Brackets:Pack Display:false
|
||||||
|
SET:Fancy Font:Pack Display:false
|
||||||
|
SET:Text After Value:Pack Display:
|
||||||
|
SET:Pack Icon:Pack Display:true
|
||||||
|
SET:Pack Order:Pack Display:First Pack
|
||||||
|
SET:Pack Title Replacement:Pack Display:White Text Only
|
||||||
|
SET:Scale:Clock:3.0
|
||||||
|
SET:Background:Clock:true
|
||||||
|
SET:Background Color:Clock:-16777216:false:127
|
||||||
|
SET:Color:Clock:-1:false:255
|
||||||
|
SET:Font Shadow:Clock:true
|
||||||
|
SET:Brackets:Clock:false
|
||||||
|
SET:Fancy Font:Clock:false
|
||||||
|
SET:Text After Value:Clock:
|
||||||
|
SET:24 Hour Format:Clock:false
|
||||||
|
SET:Scale:Speedometer:3.0
|
||||||
|
SET:Background:Speedometer:true
|
||||||
|
SET:Background Color:Speedometer:-16777216:false:127
|
||||||
|
SET:Color:Speedometer:-1:false:255
|
||||||
|
SET:Font Shadow:Speedometer:true
|
||||||
|
SET:Brackets:Speedometer:false
|
||||||
|
SET:Fancy Font:Speedometer:false
|
||||||
|
SET:Text After Value:Speedometer:m/s
|
||||||
|
SET:Scale:Reach Display:3.0
|
||||||
|
SET:Background:Reach Display:true
|
||||||
|
SET:Background Color:Reach Display:-16777216:false:127
|
||||||
|
SET:Color:Reach Display:-1:false:255
|
||||||
|
SET:Font Shadow:Reach Display:true
|
||||||
|
SET:Brackets:Reach Display:false
|
||||||
|
SET:Fancy Font:Reach Display:false
|
||||||
|
SET:Text After Value:Reach Display:blocks
|
||||||
|
SET:Scale:Day Counter:3.0
|
||||||
|
SET:Background:Day Counter:true
|
||||||
|
SET:Background Color:Day Counter:-16777216:false:127
|
||||||
|
SET:Color:Day Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Day Counter:true
|
||||||
|
SET:Brackets:Day Counter:false
|
||||||
|
SET:Fancy Font:Day Counter:false
|
||||||
|
SET:Text After Value:Day Counter:Days
|
||||||
|
SET:Scale:Server Address:3.0
|
||||||
|
SET:Background:Server Address:true
|
||||||
|
SET:Background Color:Server Address:-16777216:false:127
|
||||||
|
SET:Color:Server Address:-1:false:255
|
||||||
|
SET:Font Shadow:Server Address:true
|
||||||
|
SET:Brackets:Server Address:false
|
||||||
|
SET:Fancy Font:Server Address:false
|
||||||
|
SET:Text After Value:Server Address:
|
||||||
|
SET:Hide Your Name:Nick Hider:true
|
||||||
|
SET:Hide Skins:Nick Hider:false
|
||||||
|
SET:Use Own Skin For All:Nick Hider:false
|
||||||
|
SET:Use Real Skin For Self:Nick Hider:true
|
||||||
|
SET:Custom Name:Nick Hider:You
|
||||||
|
SET:Time:Time Changer:0.0
|
||||||
|
SET:Scroll:Zoom:false
|
||||||
|
SET:Smooth Zoom:Zoom:true
|
||||||
|
SET:Zoom Speed:Zoom:14.0
|
||||||
|
SET:Factor:Zoom:4.0
|
||||||
|
SET:Smooth Camera:Zoom:true
|
||||||
|
SET:Scale:Combo Counter:3.0
|
||||||
|
SET:Background:Combo Counter:true
|
||||||
|
SET:Background Color:Combo Counter:-16777216:false:127
|
||||||
|
SET:Color:Combo Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Combo Counter:true
|
||||||
|
SET:Brackets:Combo Counter:false
|
||||||
|
SET:Fancy Font:Combo Counter:false
|
||||||
|
SET:Text After Value:Combo Counter:Combo
|
||||||
|
SET:Alpha:Hit Color:0.8
|
||||||
|
SET:Gold Ingot Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Nugget Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Ore Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Apple Scale:UHC Overlay:1.5
|
||||||
|
SET:Skull Scale:UHC Overlay:1.5
|
||||||
|
SET:FPS Boost:FPS Boost:true
|
||||||
|
SET:Advanced FPS Boost:FPS Boost:false
|
||||||
|
SET:Low Graphics Mode:FPS Boost:false
|
||||||
|
SET:Hud Optimization:FPS Boost:false
|
||||||
|
SET:Optimized Entity Movement:FPS Boost:true
|
||||||
|
SET:Lazy Chunk Loading:FPS Boost:Balance
|
||||||
|
SET:Occlusion Culling:FPS Boost:Balance
|
||||||
|
SET:Hide Tall Grass:FPS Boost:false
|
||||||
|
SET:Hide Flowers:FPS Boost:false
|
||||||
|
SET:Hide Fences:FPS Boost:false
|
||||||
|
SET:Hide Fence Gates:FPS Boost:false
|
||||||
|
SET:Hide Armor Stands:FPS Boost:false
|
||||||
|
SET:Hide Skulls:FPS Boost:false
|
||||||
|
SET:Hide Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Maps In Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Stuck Arrows:FPS Boost:false
|
||||||
|
SET:Hide Ground Arrows:FPS Boost:false
|
||||||
|
SET:Hide Lava Particles:FPS Boost:false
|
||||||
|
SET:Hide Mob in Spawner:FPS Boost:false
|
||||||
|
SET:Hide Spawner Particles:FPS Boost:false
|
||||||
|
SET:Player Render Distance:FPS Boost:64.0
|
||||||
|
SET:Passive Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Hostile Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Misc. Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Check glError:FPS Boost:false
|
||||||
|
SET:Do memory debug:FPS Boost:true
|
||||||
|
SET:Preset Crosshair:Crosshair:false
|
||||||
|
SET:Preset ID:Crosshair:1
|
||||||
|
SET:Type:Crosshair:Cross
|
||||||
|
SET:Crosshair Color:Crosshair:-1:false:255
|
||||||
|
SET:Player Color:Crosshair:-5231066:false:255
|
||||||
|
SET:Hostile Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Passive Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Outline Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Dot Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Width:Crosshair:3.0
|
||||||
|
SET:Height:Crosshair:3.0
|
||||||
|
SET:Gap:Crosshair:2.0
|
||||||
|
SET:Thickness:Crosshair:1.0
|
||||||
|
SET:Scale:Crosshair:1.0
|
||||||
|
SET:Highlight Hostile Mobs:Crosshair:false
|
||||||
|
SET:Highlight Passive Mobs:Crosshair:false
|
||||||
|
SET:Highlight Players:Crosshair:false
|
||||||
|
SET:Crosshair Outline:Crosshair:false
|
||||||
|
SET:Crosshair Dot:Crosshair:false
|
||||||
|
SET:Vanilla Blendering:Crosshair:true
|
||||||
|
SET:Capes:Cosmetics:true
|
||||||
|
SET:Cape Type:Cosmetics:Dynamic Curved
|
||||||
|
SET:Cape Shoulders:Cosmetics:true
|
||||||
|
SET:Wings:Cosmetics:true
|
||||||
|
SET:Wings Scale:Cosmetics:1.0
|
||||||
|
SET:Bandanas:Cosmetics:true
|
||||||
|
SET:Hats:Cosmetics:true
|
||||||
|
SET:Shields:Cosmetics:true
|
||||||
|
SET:Custom Skins:Cosmetics:true
|
||||||
|
SET:Gui Debug:General:false
|
||||||
|
SET:Hide mods in F3:General:true
|
||||||
|
SET:Vanilla ESC Menu Layout:General:false
|
||||||
|
SET:Menu Background Blur:General:true
|
||||||
|
SET:Silent Logo Location:General:Bottom Right Corner
|
||||||
|
SET:Silent Button Sounds:General:false
|
||||||
|
SET:Menu Animations:General:true
|
||||||
|
SET:Menu Animations Speed:General:300.0
|
||||||
|
SET:Crosshair in F5:Render:false
|
||||||
|
SET:Centered Potion Inventory:Render:true
|
||||||
|
SET:Disable Achievements:Render:false
|
||||||
|
SET:Model Bobbing Only:Render:false
|
||||||
|
SET:Borderless Fullscreen:Render:false
|
||||||
|
SET:Weather:Weather:Clear
|
||||||
|
SET:Play Thunder Sound:Weather:true
|
||||||
|
SET:Background:Tab:true
|
||||||
|
SET:Disable Header:Tab:false
|
||||||
|
SET:Disable Footer:Tab:false
|
||||||
|
SET:Show Ping Numbers:Tab:true
|
||||||
|
SET:Show Nametag Icons:Tab:true
|
||||||
|
SET:Font Shadow:Chat:true
|
||||||
|
SET:Bar Animation:Chat:false
|
||||||
|
SET:Smooth:Chat:false
|
||||||
|
SET:Smooth Speed:Chat:4.0
|
||||||
|
SET:Disable Background:Chat:true
|
||||||
|
SET:Anti-Spam:Chat:false
|
||||||
|
SET:Dark Background:Inventory Blur:false
|
||||||
|
SET:Scale:Coordinates:3.0
|
||||||
|
SET:Background:Coordinates:true
|
||||||
|
SET:Background Color:Coordinates:-16777216:false:127
|
||||||
|
SET:Color:Coordinates:-1:false:255
|
||||||
|
SET:Font Shadow:Coordinates:true
|
||||||
|
SET:Brackets:Coordinates:false
|
||||||
|
SET:Fancy Font:Coordinates:false
|
||||||
|
SET:Show Biome:Coordinates:true
|
||||||
|
SET:Bounding Box:Hitboxes:true
|
||||||
|
SET:Bounding Box Color:Hitboxes:-1:false:255
|
||||||
|
SET:Eye Height:Hitboxes:false
|
||||||
|
SET:Eye Height Color:Hitboxes:-5231066:false:255
|
||||||
|
SET:Look Vector:Hitboxes:false
|
||||||
|
SET:Look Vector Color:Hitboxes:-12827479:false:255
|
||||||
|
SET:Line Width:Hitboxes:2.0
|
||||||
|
SET:Projectile Hitbox:Hitboxes:true
|
||||||
|
SET:Arrow Hitbox:Hitboxes:true
|
||||||
|
SET:Players Hitbox:Hitboxes:true
|
||||||
|
SET:Passive Hitbox:Hitboxes:true
|
||||||
|
SET:Monsters Hitbox:Hitboxes:true
|
||||||
|
SET:Fireballs Hitbox:Hitboxes:true
|
||||||
|
SET:Snowballs Hitbox:Hitboxes:true
|
||||||
|
SET:Wither Skulls Hitbox:Hitboxes:true
|
||||||
|
SET:Item Drops Hitbox:Hitboxes:true
|
||||||
|
SET:Fireworks Hitbox:Hitboxes:true
|
||||||
|
SET:XP Orbs Hitbox:Hitboxes:true
|
||||||
|
SET:Item Frames Hitbox:Hitboxes:true
|
||||||
|
SET:Show in F5:Nametags:true
|
||||||
|
SET:Show in F1:Nametags:false
|
||||||
|
SET:Background:Nametags:true
|
||||||
|
SET:Font Shadow:Nametags:false
|
||||||
|
SET:Show Nametag Icons:Nametags:true
|
||||||
|
SET:Show Nametag Messages:Nametags:true
|
||||||
|
SET:Scale:Scoreboard:1.0
|
||||||
|
SET:Background:Scoreboard:true
|
||||||
|
SET:Font Shadow:Scoreboard:true
|
||||||
|
SET:Numbers:Scoreboard:false
|
||||||
|
SET:Outline:Block Overlay:true
|
||||||
|
SET:Outline Color:Block Overlay:-1:false:255
|
||||||
|
SET:Outline Width:Block Overlay:3.0
|
||||||
|
SET:Fill:Block Overlay:false
|
||||||
|
SET:Fill Color:Block Overlay:-1:false:127
|
||||||
|
SET:Show Sharpness:Particles:true
|
||||||
|
SET:Always Sharpness Particles:Particles:false
|
||||||
|
SET:Sharpness Multiplier:Particles:1.0
|
||||||
|
SET:Show Criticals:Particles:true
|
||||||
|
SET:Criticals Multiplier:Particles:1.0
|
||||||
|
SET:Only Players Particles:Particles:false
|
||||||
|
SET:Cancel Impossible:Particles:false
|
||||||
|
SET:New Particles For Impossibles:Particles:false
|
||||||
|
SET:Health:Damage Tint:5.0
|
||||||
|
SET:Scale:Titles:1.0
|
||||||
|
SET:Amount:Color Saturation:1.0
|
||||||
|
SET:Boss Bar:Boss Bar:true
|
||||||
|
SET:Boss Text:Boss Bar:true
|
||||||
|
SET:Hide Direct Messages:ToggleChat:false
|
||||||
|
SET:Hide Shout Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Team Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Messages (Excludes Team Chat):ToggleChat:false
|
||||||
|
SET:Hide Friend Join/Leave Message:ToggleChat:false
|
||||||
|
SET:Hide Friend Requests:ToggleChat:false
|
||||||
|
SET:Hide Guild Messages:ToggleChat:false
|
||||||
|
SET:Hide Guild Join/Leave Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Invites:ToggleChat:false
|
||||||
|
SET:Hide Lobby Join Messages:ToggleChat:false
|
||||||
|
SET:Fire Height:Pack Tweaks:0.0
|
||||||
|
SET:Fire Opacity:Pack Tweaks:0.8999999761581421
|
||||||
|
SET:Hide Pumpkin Overlay:Pack Tweaks:false
|
||||||
|
SET:Water Fog:Pack Tweaks:true
|
||||||
|
SET:Scale:Player Counter:3.0
|
||||||
|
SET:Background:Player Counter:true
|
||||||
|
SET:Background Color:Player Counter:-16777216:false:127
|
||||||
|
SET:Color:Player Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Player Counter:true
|
||||||
|
SET:Brackets:Player Counter:false
|
||||||
|
SET:Fancy Font:Player Counter:false
|
||||||
|
SET:Text After Value:Player Counter:Players Online
|
||||||
|
SET:Scale:BlockInfo:3.0
|
||||||
|
SET:Block Coords:BlockInfo:true
|
||||||
|
SET:Correct Tool:BlockInfo:true
|
||||||
|
SET:Break Time:BlockInfo:true
|
||||||
|
SET:Background:BlockInfo:true
|
||||||
|
SET:Background Color:BlockInfo:-16777216:false:127
|
||||||
|
SET:Color:BlockInfo:-1:false:255
|
||||||
|
SET:Font Shadow:BlockInfo:true
|
||||||
|
SET:Fancy Font:BlockInfo:false
|
||||||
|
SET:Amount:Motion Blur:0.5
|
||||||
|
ATC:/play solo_insane:13
|
407
src/main/resources/assets/minecraft/silentclient/configs/PvP.txt
Normal file
@ -0,0 +1,407 @@
|
|||||||
|
MOD:FPS:true
|
||||||
|
POS:FPS:0.9078125:0.2
|
||||||
|
MOD:CPS:true
|
||||||
|
POS:CPS:0.9078125:0.24166666666666667
|
||||||
|
MOD:Toggle Sprint:true
|
||||||
|
POS:Toggle Sprint:0.5046875:0.9166666666666666
|
||||||
|
MOD:Keystrokes:true
|
||||||
|
POS:Keystrokes:0.9078125:0.0
|
||||||
|
MOD:Perspective:false
|
||||||
|
MOD:Animations:true
|
||||||
|
MOD:Armor Status:true
|
||||||
|
POS:Armor Status:0.0015625:0.3527777777777778
|
||||||
|
MOD:Memory:false
|
||||||
|
POS:Memory:0.0:0.0
|
||||||
|
MOD:Auto GG:false
|
||||||
|
MOD:Potion Hud:false
|
||||||
|
POS:Potion Hud:0.0:0.0
|
||||||
|
MOD:Ping:true
|
||||||
|
POS:Ping:0.9078125:0.2833333333333333
|
||||||
|
MOD:Item Physics:false
|
||||||
|
MOD:Pack Display:false
|
||||||
|
POS:Pack Display:0.0:0.0
|
||||||
|
MOD:FullBright:false
|
||||||
|
MOD:Clock:false
|
||||||
|
POS:Clock:0.0:0.0
|
||||||
|
MOD:Speedometer:false
|
||||||
|
POS:Speedometer:0.0:0.0
|
||||||
|
MOD:Reach Display:false
|
||||||
|
POS:Reach Display:0.0:0.0
|
||||||
|
MOD:Day Counter:false
|
||||||
|
POS:Day Counter:0.0:0.0
|
||||||
|
MOD:Server Address:false
|
||||||
|
POS:Server Address:0.0:0.0
|
||||||
|
MOD:TNT Timer:false
|
||||||
|
MOD:Auto Tip:false
|
||||||
|
MOD:Level Head:false
|
||||||
|
MOD:Nick Hider:false
|
||||||
|
MOD:Time Changer:false
|
||||||
|
MOD:Zoom:false
|
||||||
|
MOD:Combo Counter:false
|
||||||
|
POS:Combo Counter:0.0:0.0
|
||||||
|
MOD:Hit Color:false
|
||||||
|
MOD:UHC Overlay:false
|
||||||
|
MOD:FPS Boost:false
|
||||||
|
MOD:Clear Glass:false
|
||||||
|
MOD:Crosshair:true
|
||||||
|
MOD:Cosmetics:false
|
||||||
|
MOD:General:false
|
||||||
|
MOD:Render:false
|
||||||
|
MOD:Weather:false
|
||||||
|
MOD:Tab:true
|
||||||
|
MOD:Chat:true
|
||||||
|
MOD:Inventory Blur:false
|
||||||
|
MOD:Coordinates:false
|
||||||
|
POS:Coordinates:0.0015625:0.002777777777777778
|
||||||
|
MOD:Chunk Borders:false
|
||||||
|
MOD:Hitboxes:false
|
||||||
|
MOD:Nametags:true
|
||||||
|
MOD:Scoreboard:true
|
||||||
|
MOD:Block Overlay:false
|
||||||
|
MOD:Particles:false
|
||||||
|
MOD:Damage Tint:false
|
||||||
|
MOD:Titles:true
|
||||||
|
MOD:Color Saturation:false
|
||||||
|
MOD:Auto Text:false
|
||||||
|
MOD:Boss Bar:true
|
||||||
|
MOD:ToggleChat:false
|
||||||
|
MOD:Pack Tweaks:false
|
||||||
|
MOD:Player Counter:false
|
||||||
|
POS:Player Counter:0.0:0.0
|
||||||
|
MOD:BlockInfo:false
|
||||||
|
POS:BlockInfo:0.0:0.0
|
||||||
|
MOD:Motion Blur:false
|
||||||
|
SET:Scale:FPS:3.0
|
||||||
|
SET:Background:FPS:true
|
||||||
|
SET:Background Color:FPS:-16777216:false:127
|
||||||
|
SET:Color:FPS:-1:false:255
|
||||||
|
SET:Font Shadow:FPS:true
|
||||||
|
SET:Brackets:FPS:false
|
||||||
|
SET:Fancy Font:FPS:false
|
||||||
|
SET:Text After Value:FPS:FPS
|
||||||
|
SET:Scale:CPS:3.0
|
||||||
|
SET:Background:CPS:true
|
||||||
|
SET:Background Color:CPS:-16777216:false:127
|
||||||
|
SET:Color:CPS:-1:false:255
|
||||||
|
SET:Font Shadow:CPS:true
|
||||||
|
SET:Brackets:CPS:false
|
||||||
|
SET:Fancy Font:CPS:false
|
||||||
|
SET:Text After Value:CPS:CPS
|
||||||
|
SET:CPS Type:CPS:LMB
|
||||||
|
SET:Remove CPS Text:CPS:false
|
||||||
|
SET:Scale:Toggle Sprint:2.0
|
||||||
|
SET:Background:Toggle Sprint:false
|
||||||
|
SET:Background Color:Toggle Sprint:-16777216:false:127
|
||||||
|
SET:Color:Toggle Sprint:-1:false:255
|
||||||
|
SET:Font Shadow:Toggle Sprint:true
|
||||||
|
SET:Brackets:Toggle Sprint:true
|
||||||
|
SET:Fancy Font:Toggle Sprint:false
|
||||||
|
SET:Sprint Mode:Toggle Sprint:Toggle
|
||||||
|
SET:Sprinting Text:Toggle Sprint:Sprinting
|
||||||
|
SET:Show HUD Text:Toggle Sprint:true
|
||||||
|
SET:Scale:Keystrokes:3.0
|
||||||
|
SET:Font Shadow:Keystrokes:true
|
||||||
|
SET:Fancy Font:Keystrokes:false
|
||||||
|
SET:Background:Keystrokes:true
|
||||||
|
SET:Color:Keystrokes:-1:false:255
|
||||||
|
SET:Background Color:Keystrokes:-16777216:false:127
|
||||||
|
SET:Clicked Color:Keystrokes:-16777216:false:255
|
||||||
|
SET:Clicked Background Color:Keystrokes:-1:false:127
|
||||||
|
SET:Fade Delay:Keystrokes:100.0
|
||||||
|
SET:Show LMB/RMB:Keystrokes:true
|
||||||
|
SET:Show CPS:Keystrokes:false
|
||||||
|
SET:Show Space:Keystrokes:true
|
||||||
|
SET:Replace Names With Arrow:Keystrokes:false
|
||||||
|
SET:1.7 Item Positions:Animations:true
|
||||||
|
SET:1.7 Bow Pullback:Animations:true
|
||||||
|
SET:1.7 Block Animation:Animations:true
|
||||||
|
SET:1.7 Rod Position:Animations:true
|
||||||
|
SET:1.7 Punching Animation:Animations:true
|
||||||
|
SET:1.7 Eating & Drinking Animation:Animations:true
|
||||||
|
SET:1.7 Block-Hitting Animation:Animations:true
|
||||||
|
SET:1.7 Item Switching Animation:Animations:true
|
||||||
|
SET:1.7 Throwing:Animations:true
|
||||||
|
SET:1.7 Enchant Glint:Animations:true
|
||||||
|
SET:1.7 Skins:Animations:false
|
||||||
|
SET:Smooth Sneaking:Animations:true
|
||||||
|
SET:No Shaking:Animations:true
|
||||||
|
SET:Scale:Armor Status:3.0
|
||||||
|
SET:Orientation:Armor Status:Vertical
|
||||||
|
SET:Font Shadow:Armor Status:true
|
||||||
|
SET:Show Percentage:Armor Status:true
|
||||||
|
SET:Percentage Color:Armor Status:-1:false:255
|
||||||
|
SET:Fancy Font:Armor Status:false
|
||||||
|
SET:Scale:Memory:3.0
|
||||||
|
SET:Background:Memory:true
|
||||||
|
SET:Background Color:Memory:-16777216:false:127
|
||||||
|
SET:Color:Memory:-1:false:255
|
||||||
|
SET:Font Shadow:Memory:true
|
||||||
|
SET:Brackets:Memory:false
|
||||||
|
SET:Fancy Font:Memory:false
|
||||||
|
SET:Text After Value:Memory:Mem
|
||||||
|
SET:Phrase:Auto GG:gg
|
||||||
|
SET:Scale:Potion Hud:3.0
|
||||||
|
SET:Font Shadow:Potion Hud:true
|
||||||
|
SET:Fancy Font:Potion Hud:false
|
||||||
|
SET:Show Potion Name:Potion Hud:true
|
||||||
|
SET:Potion Name Color:Potion Hud:-1:false:255
|
||||||
|
SET:Show Duration:Potion Hud:true
|
||||||
|
SET:Duration Color:Potion Hud:-6513257:false:255
|
||||||
|
SET:Potions In Inventory:Potion Hud:true
|
||||||
|
SET:Scale:Ping:3.0
|
||||||
|
SET:Background:Ping:true
|
||||||
|
SET:Background Color:Ping:-16777216:false:127
|
||||||
|
SET:Color:Ping:-1:false:255
|
||||||
|
SET:Font Shadow:Ping:true
|
||||||
|
SET:Brackets:Ping:false
|
||||||
|
SET:Fancy Font:Ping:false
|
||||||
|
SET:Text After Value:Ping:ms
|
||||||
|
SET:Speed:Item Physics:1.0
|
||||||
|
SET:Scale:Pack Display:3.0
|
||||||
|
SET:Background:Pack Display:true
|
||||||
|
SET:Background Color:Pack Display:-16777216:false:127
|
||||||
|
SET:Color:Pack Display:-1:false:255
|
||||||
|
SET:Font Shadow:Pack Display:true
|
||||||
|
SET:Brackets:Pack Display:false
|
||||||
|
SET:Fancy Font:Pack Display:false
|
||||||
|
SET:Text After Value:Pack Display:
|
||||||
|
SET:Pack Icon:Pack Display:true
|
||||||
|
SET:Pack Order:Pack Display:First Pack
|
||||||
|
SET:Pack Title Replacement:Pack Display:White Text Only
|
||||||
|
SET:Scale:Clock:3.0
|
||||||
|
SET:Background:Clock:true
|
||||||
|
SET:Background Color:Clock:-16777216:false:127
|
||||||
|
SET:Color:Clock:-1:false:255
|
||||||
|
SET:Font Shadow:Clock:true
|
||||||
|
SET:Brackets:Clock:false
|
||||||
|
SET:Fancy Font:Clock:false
|
||||||
|
SET:Text After Value:Clock:
|
||||||
|
SET:24 Hour Format:Clock:false
|
||||||
|
SET:Scale:Speedometer:3.0
|
||||||
|
SET:Background:Speedometer:true
|
||||||
|
SET:Background Color:Speedometer:-16777216:false:127
|
||||||
|
SET:Color:Speedometer:-1:false:255
|
||||||
|
SET:Font Shadow:Speedometer:true
|
||||||
|
SET:Brackets:Speedometer:false
|
||||||
|
SET:Fancy Font:Speedometer:false
|
||||||
|
SET:Text After Value:Speedometer:m/s
|
||||||
|
SET:Scale:Reach Display:3.0
|
||||||
|
SET:Background:Reach Display:true
|
||||||
|
SET:Background Color:Reach Display:-16777216:false:127
|
||||||
|
SET:Color:Reach Display:-1:false:255
|
||||||
|
SET:Font Shadow:Reach Display:true
|
||||||
|
SET:Brackets:Reach Display:false
|
||||||
|
SET:Fancy Font:Reach Display:false
|
||||||
|
SET:Text After Value:Reach Display:blocks
|
||||||
|
SET:Scale:Day Counter:3.0
|
||||||
|
SET:Background:Day Counter:true
|
||||||
|
SET:Background Color:Day Counter:-16777216:false:127
|
||||||
|
SET:Color:Day Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Day Counter:true
|
||||||
|
SET:Brackets:Day Counter:false
|
||||||
|
SET:Fancy Font:Day Counter:false
|
||||||
|
SET:Text After Value:Day Counter:Days
|
||||||
|
SET:Scale:Server Address:3.0
|
||||||
|
SET:Background:Server Address:true
|
||||||
|
SET:Background Color:Server Address:-16777216:false:127
|
||||||
|
SET:Color:Server Address:-1:false:255
|
||||||
|
SET:Font Shadow:Server Address:true
|
||||||
|
SET:Brackets:Server Address:false
|
||||||
|
SET:Fancy Font:Server Address:false
|
||||||
|
SET:Text After Value:Server Address:
|
||||||
|
SET:Hide Your Name:Nick Hider:true
|
||||||
|
SET:Hide Skins:Nick Hider:false
|
||||||
|
SET:Use Own Skin For All:Nick Hider:false
|
||||||
|
SET:Use Real Skin For Self:Nick Hider:true
|
||||||
|
SET:Custom Name:Nick Hider:You
|
||||||
|
SET:Time:Time Changer:0.0
|
||||||
|
SET:Scroll:Zoom:false
|
||||||
|
SET:Smooth Zoom:Zoom:true
|
||||||
|
SET:Zoom Speed:Zoom:14.0
|
||||||
|
SET:Factor:Zoom:4.0
|
||||||
|
SET:Smooth Camera:Zoom:true
|
||||||
|
SET:Scale:Combo Counter:3.0
|
||||||
|
SET:Background:Combo Counter:true
|
||||||
|
SET:Background Color:Combo Counter:-16777216:false:127
|
||||||
|
SET:Color:Combo Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Combo Counter:true
|
||||||
|
SET:Brackets:Combo Counter:false
|
||||||
|
SET:Fancy Font:Combo Counter:false
|
||||||
|
SET:Text After Value:Combo Counter:Combo
|
||||||
|
SET:Alpha:Hit Color:0.8
|
||||||
|
SET:Gold Ingot Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Nugget Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Ore Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Apple Scale:UHC Overlay:1.5
|
||||||
|
SET:Skull Scale:UHC Overlay:1.5
|
||||||
|
SET:FPS Boost:FPS Boost:true
|
||||||
|
SET:Advanced FPS Boost:FPS Boost:false
|
||||||
|
SET:Low Graphics Mode:FPS Boost:false
|
||||||
|
SET:Hud Optimization:FPS Boost:false
|
||||||
|
SET:Optimized Entity Movement:FPS Boost:true
|
||||||
|
SET:Lazy Chunk Loading:FPS Boost:Balance
|
||||||
|
SET:Occlusion Culling:FPS Boost:Balance
|
||||||
|
SET:Hide Tall Grass:FPS Boost:false
|
||||||
|
SET:Hide Flowers:FPS Boost:false
|
||||||
|
SET:Hide Fences:FPS Boost:false
|
||||||
|
SET:Hide Fence Gates:FPS Boost:false
|
||||||
|
SET:Hide Armor Stands:FPS Boost:false
|
||||||
|
SET:Hide Skulls:FPS Boost:false
|
||||||
|
SET:Hide Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Maps In Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Stuck Arrows:FPS Boost:false
|
||||||
|
SET:Hide Ground Arrows:FPS Boost:false
|
||||||
|
SET:Hide Lava Particles:FPS Boost:false
|
||||||
|
SET:Hide Mob in Spawner:FPS Boost:false
|
||||||
|
SET:Hide Spawner Particles:FPS Boost:false
|
||||||
|
SET:Player Render Distance:FPS Boost:64.0
|
||||||
|
SET:Passive Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Hostile Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Misc. Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Check glError:FPS Boost:false
|
||||||
|
SET:Do memory debug:FPS Boost:true
|
||||||
|
SET:Preset Crosshair:Crosshair:false
|
||||||
|
SET:Preset ID:Crosshair:1
|
||||||
|
SET:Type:Crosshair:Cross
|
||||||
|
SET:Crosshair Color:Crosshair:-1:false:255
|
||||||
|
SET:Player Color:Crosshair:-5231066:false:255
|
||||||
|
SET:Hostile Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Passive Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Outline Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Dot Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Width:Crosshair:3.0
|
||||||
|
SET:Height:Crosshair:3.0
|
||||||
|
SET:Gap:Crosshair:1.0
|
||||||
|
SET:Thickness:Crosshair:1.0
|
||||||
|
SET:Scale:Crosshair:1.0
|
||||||
|
SET:Highlight Hostile Mobs:Crosshair:false
|
||||||
|
SET:Highlight Passive Mobs:Crosshair:false
|
||||||
|
SET:Highlight Players:Crosshair:false
|
||||||
|
SET:Crosshair Outline:Crosshair:false
|
||||||
|
SET:Crosshair Dot:Crosshair:false
|
||||||
|
SET:Vanilla Blendering:Crosshair:true
|
||||||
|
SET:Capes:Cosmetics:true
|
||||||
|
SET:Cape Type:Cosmetics:Dynamic Curved
|
||||||
|
SET:Cape Shoulders:Cosmetics:true
|
||||||
|
SET:Wings:Cosmetics:true
|
||||||
|
SET:Wings Scale:Cosmetics:1.0
|
||||||
|
SET:Bandanas:Cosmetics:true
|
||||||
|
SET:Hats:Cosmetics:true
|
||||||
|
SET:Shields:Cosmetics:true
|
||||||
|
SET:Custom Skins:Cosmetics:true
|
||||||
|
SET:Gui Debug:General:false
|
||||||
|
SET:Hide mods in F3:General:true
|
||||||
|
SET:Vanilla ESC Menu Layout:General:false
|
||||||
|
SET:Menu Background Blur:General:true
|
||||||
|
SET:Silent Logo Location:General:Bottom Right Corner
|
||||||
|
SET:Silent Button Sounds:General:false
|
||||||
|
SET:Menu Animations:General:true
|
||||||
|
SET:Menu Animations Speed:General:300.0
|
||||||
|
SET:Crosshair in F5:Render:false
|
||||||
|
SET:Centered Potion Inventory:Render:true
|
||||||
|
SET:Disable Achievements:Render:false
|
||||||
|
SET:Model Bobbing Only:Render:false
|
||||||
|
SET:Borderless Fullscreen:Render:false
|
||||||
|
SET:Weather:Weather:Clear
|
||||||
|
SET:Play Thunder Sound:Weather:true
|
||||||
|
SET:Background:Tab:true
|
||||||
|
SET:Disable Header:Tab:false
|
||||||
|
SET:Disable Footer:Tab:false
|
||||||
|
SET:Show Ping Numbers:Tab:true
|
||||||
|
SET:Show Nametag Icons:Tab:true
|
||||||
|
SET:Font Shadow:Chat:true
|
||||||
|
SET:Bar Animation:Chat:false
|
||||||
|
SET:Smooth:Chat:false
|
||||||
|
SET:Smooth Speed:Chat:4.0
|
||||||
|
SET:Disable Background:Chat:true
|
||||||
|
SET:Anti-Spam:Chat:false
|
||||||
|
SET:Dark Background:Inventory Blur:false
|
||||||
|
SET:Scale:Coordinates:3.0
|
||||||
|
SET:Background:Coordinates:true
|
||||||
|
SET:Background Color:Coordinates:-16777216:false:127
|
||||||
|
SET:Color:Coordinates:-1:false:255
|
||||||
|
SET:Font Shadow:Coordinates:true
|
||||||
|
SET:Brackets:Coordinates:false
|
||||||
|
SET:Fancy Font:Coordinates:false
|
||||||
|
SET:Show Biome:Coordinates:true
|
||||||
|
SET:Bounding Box:Hitboxes:true
|
||||||
|
SET:Bounding Box Color:Hitboxes:-1:false:255
|
||||||
|
SET:Eye Height:Hitboxes:false
|
||||||
|
SET:Eye Height Color:Hitboxes:-5231066:false:255
|
||||||
|
SET:Look Vector:Hitboxes:false
|
||||||
|
SET:Look Vector Color:Hitboxes:-12827479:false:255
|
||||||
|
SET:Line Width:Hitboxes:2.0
|
||||||
|
SET:Projectile Hitbox:Hitboxes:true
|
||||||
|
SET:Arrow Hitbox:Hitboxes:true
|
||||||
|
SET:Players Hitbox:Hitboxes:true
|
||||||
|
SET:Passive Hitbox:Hitboxes:true
|
||||||
|
SET:Monsters Hitbox:Hitboxes:true
|
||||||
|
SET:Fireballs Hitbox:Hitboxes:true
|
||||||
|
SET:Snowballs Hitbox:Hitboxes:true
|
||||||
|
SET:Wither Skulls Hitbox:Hitboxes:true
|
||||||
|
SET:Item Drops Hitbox:Hitboxes:true
|
||||||
|
SET:Fireworks Hitbox:Hitboxes:true
|
||||||
|
SET:XP Orbs Hitbox:Hitboxes:true
|
||||||
|
SET:Item Frames Hitbox:Hitboxes:true
|
||||||
|
SET:Show in F5:Nametags:true
|
||||||
|
SET:Show in F1:Nametags:false
|
||||||
|
SET:Background:Nametags:true
|
||||||
|
SET:Font Shadow:Nametags:false
|
||||||
|
SET:Show Nametag Icons:Nametags:true
|
||||||
|
SET:Show Nametag Messages:Nametags:true
|
||||||
|
SET:Scale:Scoreboard:1.0
|
||||||
|
SET:Background:Scoreboard:true
|
||||||
|
SET:Font Shadow:Scoreboard:true
|
||||||
|
SET:Numbers:Scoreboard:false
|
||||||
|
SET:Outline:Block Overlay:true
|
||||||
|
SET:Outline Color:Block Overlay:-1:false:255
|
||||||
|
SET:Outline Width:Block Overlay:3.0
|
||||||
|
SET:Fill:Block Overlay:true
|
||||||
|
SET:Fill Color:Block Overlay:-1:false:56
|
||||||
|
SET:Show Sharpness:Particles:true
|
||||||
|
SET:Always Sharpness Particles:Particles:false
|
||||||
|
SET:Sharpness Multiplier:Particles:1.0
|
||||||
|
SET:Show Criticals:Particles:true
|
||||||
|
SET:Criticals Multiplier:Particles:1.0
|
||||||
|
SET:Only Players Particles:Particles:false
|
||||||
|
SET:Cancel Impossible:Particles:false
|
||||||
|
SET:New Particles For Impossibles:Particles:false
|
||||||
|
SET:Health:Damage Tint:5.0
|
||||||
|
SET:Scale:Titles:1.0
|
||||||
|
SET:Amount:Color Saturation:1.0
|
||||||
|
SET:Boss Bar:Boss Bar:true
|
||||||
|
SET:Boss Text:Boss Bar:true
|
||||||
|
SET:Hide Direct Messages:ToggleChat:false
|
||||||
|
SET:Hide Shout Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Team Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Messages (Excludes Team Chat):ToggleChat:false
|
||||||
|
SET:Hide Friend Join/Leave Message:ToggleChat:false
|
||||||
|
SET:Hide Friend Requests:ToggleChat:false
|
||||||
|
SET:Hide Guild Messages:ToggleChat:false
|
||||||
|
SET:Hide Guild Join/Leave Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Invites:ToggleChat:false
|
||||||
|
SET:Hide Lobby Join Messages:ToggleChat:false
|
||||||
|
SET:Fire Height:Pack Tweaks:0.0
|
||||||
|
SET:Fire Opacity:Pack Tweaks:0.8999999761581421
|
||||||
|
SET:Hide Pumpkin Overlay:Pack Tweaks:false
|
||||||
|
SET:Water Fog:Pack Tweaks:true
|
||||||
|
SET:Scale:Player Counter:3.0
|
||||||
|
SET:Background:Player Counter:true
|
||||||
|
SET:Background Color:Player Counter:-16777216:false:127
|
||||||
|
SET:Color:Player Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Player Counter:true
|
||||||
|
SET:Brackets:Player Counter:false
|
||||||
|
SET:Fancy Font:Player Counter:false
|
||||||
|
SET:Text After Value:Player Counter:Players Online
|
||||||
|
SET:Scale:BlockInfo:3.0
|
||||||
|
SET:Block Coords:BlockInfo:true
|
||||||
|
SET:Correct Tool:BlockInfo:true
|
||||||
|
SET:Break Time:BlockInfo:true
|
||||||
|
SET:Background:BlockInfo:true
|
||||||
|
SET:Background Color:BlockInfo:-16777216:false:127
|
||||||
|
SET:Color:BlockInfo:-1:false:255
|
||||||
|
SET:Font Shadow:BlockInfo:true
|
||||||
|
SET:Fancy Font:BlockInfo:false
|
||||||
|
SET:Amount:Motion Blur:0.5
|
||||||
|
ATC:/play solo_insane:13
|
@ -0,0 +1,407 @@
|
|||||||
|
MOD:FPS:true
|
||||||
|
POS:FPS:0.90625:0.9555555555555556
|
||||||
|
MOD:CPS:false
|
||||||
|
POS:CPS:0.0:0.0
|
||||||
|
MOD:Toggle Sprint:false
|
||||||
|
POS:Toggle Sprint:0.0:0.0
|
||||||
|
MOD:Keystrokes:false
|
||||||
|
POS:Keystrokes:0.0:0.0
|
||||||
|
MOD:Perspective:false
|
||||||
|
MOD:Animations:true
|
||||||
|
MOD:Armor Status:true
|
||||||
|
POS:Armor Status:0.0:0.38055555555555554
|
||||||
|
MOD:Memory:false
|
||||||
|
POS:Memory:0.0:0.0
|
||||||
|
MOD:Auto GG:false
|
||||||
|
MOD:Potion Hud:true
|
||||||
|
POS:Potion Hud:0.8578125:0.3
|
||||||
|
MOD:Ping:false
|
||||||
|
POS:Ping:0.0:0.0
|
||||||
|
MOD:Item Physics:false
|
||||||
|
MOD:Pack Display:false
|
||||||
|
POS:Pack Display:0.0:0.0
|
||||||
|
MOD:FullBright:false
|
||||||
|
MOD:Clock:false
|
||||||
|
POS:Clock:0.0:0.0
|
||||||
|
MOD:Speedometer:false
|
||||||
|
POS:Speedometer:0.0:0.0
|
||||||
|
MOD:Reach Display:false
|
||||||
|
POS:Reach Display:0.0:0.0
|
||||||
|
MOD:Day Counter:false
|
||||||
|
POS:Day Counter:0.0:0.0
|
||||||
|
MOD:Server Address:false
|
||||||
|
POS:Server Address:0.0:0.0
|
||||||
|
MOD:TNT Timer:false
|
||||||
|
MOD:Auto Tip:false
|
||||||
|
MOD:Level Head:false
|
||||||
|
MOD:Nick Hider:false
|
||||||
|
MOD:Time Changer:false
|
||||||
|
MOD:Zoom:false
|
||||||
|
MOD:Combo Counter:false
|
||||||
|
POS:Combo Counter:0.0:0.0
|
||||||
|
MOD:Hit Color:false
|
||||||
|
MOD:UHC Overlay:false
|
||||||
|
MOD:FPS Boost:false
|
||||||
|
MOD:Clear Glass:false
|
||||||
|
MOD:Crosshair:false
|
||||||
|
MOD:Cosmetics:false
|
||||||
|
MOD:General:false
|
||||||
|
MOD:Render:false
|
||||||
|
MOD:Weather:false
|
||||||
|
MOD:Tab:true
|
||||||
|
MOD:Chat:true
|
||||||
|
MOD:Inventory Blur:false
|
||||||
|
MOD:Coordinates:true
|
||||||
|
POS:Coordinates:0.0015625:0.002777777777777778
|
||||||
|
MOD:Chunk Borders:false
|
||||||
|
MOD:Hitboxes:false
|
||||||
|
MOD:Nametags:true
|
||||||
|
MOD:Scoreboard:true
|
||||||
|
MOD:Block Overlay:false
|
||||||
|
MOD:Particles:false
|
||||||
|
MOD:Damage Tint:false
|
||||||
|
MOD:Titles:true
|
||||||
|
MOD:Color Saturation:false
|
||||||
|
MOD:Auto Text:false
|
||||||
|
MOD:Boss Bar:true
|
||||||
|
MOD:ToggleChat:false
|
||||||
|
MOD:Pack Tweaks:false
|
||||||
|
MOD:Player Counter:false
|
||||||
|
POS:Player Counter:0.0:0.0
|
||||||
|
MOD:BlockInfo:false
|
||||||
|
POS:BlockInfo:0.0:0.0
|
||||||
|
MOD:Motion Blur:false
|
||||||
|
SET:Scale:FPS:3.0
|
||||||
|
SET:Background:FPS:true
|
||||||
|
SET:Background Color:FPS:-16777216:false:127
|
||||||
|
SET:Color:FPS:-1:false:255
|
||||||
|
SET:Font Shadow:FPS:true
|
||||||
|
SET:Brackets:FPS:false
|
||||||
|
SET:Fancy Font:FPS:false
|
||||||
|
SET:Text After Value:FPS:FPS
|
||||||
|
SET:Scale:CPS:3.0
|
||||||
|
SET:Background:CPS:true
|
||||||
|
SET:Background Color:CPS:-16777216:false:127
|
||||||
|
SET:Color:CPS:-1:false:255
|
||||||
|
SET:Font Shadow:CPS:true
|
||||||
|
SET:Brackets:CPS:false
|
||||||
|
SET:Fancy Font:CPS:false
|
||||||
|
SET:Text After Value:CPS:CPS
|
||||||
|
SET:CPS Type:CPS:LMB
|
||||||
|
SET:Remove CPS Text:CPS:false
|
||||||
|
SET:Scale:Toggle Sprint:2.0
|
||||||
|
SET:Background:Toggle Sprint:false
|
||||||
|
SET:Background Color:Toggle Sprint:-16777216:false:127
|
||||||
|
SET:Color:Toggle Sprint:-1:false:255
|
||||||
|
SET:Font Shadow:Toggle Sprint:true
|
||||||
|
SET:Brackets:Toggle Sprint:true
|
||||||
|
SET:Fancy Font:Toggle Sprint:false
|
||||||
|
SET:Sprint Mode:Toggle Sprint:Toggle
|
||||||
|
SET:Sprinting Text:Toggle Sprint:Sprinting
|
||||||
|
SET:Show HUD Text:Toggle Sprint:true
|
||||||
|
SET:Scale:Keystrokes:3.0
|
||||||
|
SET:Font Shadow:Keystrokes:true
|
||||||
|
SET:Fancy Font:Keystrokes:false
|
||||||
|
SET:Background:Keystrokes:true
|
||||||
|
SET:Color:Keystrokes:-1:false:255
|
||||||
|
SET:Background Color:Keystrokes:-16777216:false:127
|
||||||
|
SET:Clicked Color:Keystrokes:-16777216:false:255
|
||||||
|
SET:Clicked Background Color:Keystrokes:-1:false:127
|
||||||
|
SET:Fade Delay:Keystrokes:100.0
|
||||||
|
SET:Show LMB/RMB:Keystrokes:true
|
||||||
|
SET:Show CPS:Keystrokes:true
|
||||||
|
SET:Show Space:Keystrokes:true
|
||||||
|
SET:Replace Names With Arrow:Keystrokes:false
|
||||||
|
SET:1.7 Item Positions:Animations:true
|
||||||
|
SET:1.7 Bow Pullback:Animations:true
|
||||||
|
SET:1.7 Block Animation:Animations:true
|
||||||
|
SET:1.7 Rod Position:Animations:true
|
||||||
|
SET:1.7 Punching Animation:Animations:true
|
||||||
|
SET:1.7 Eating & Drinking Animation:Animations:true
|
||||||
|
SET:1.7 Block-Hitting Animation:Animations:true
|
||||||
|
SET:1.7 Item Switching Animation:Animations:true
|
||||||
|
SET:1.7 Throwing:Animations:true
|
||||||
|
SET:1.7 Enchant Glint:Animations:true
|
||||||
|
SET:1.7 Skins:Animations:false
|
||||||
|
SET:Smooth Sneaking:Animations:true
|
||||||
|
SET:No Shaking:Animations:true
|
||||||
|
SET:Scale:Armor Status:3.0
|
||||||
|
SET:Orientation:Armor Status:Vertical
|
||||||
|
SET:Font Shadow:Armor Status:true
|
||||||
|
SET:Show Percentage:Armor Status:true
|
||||||
|
SET:Percentage Color:Armor Status:-1:false:255
|
||||||
|
SET:Fancy Font:Armor Status:false
|
||||||
|
SET:Scale:Memory:3.0
|
||||||
|
SET:Background:Memory:true
|
||||||
|
SET:Background Color:Memory:-16777216:false:127
|
||||||
|
SET:Color:Memory:-1:false:255
|
||||||
|
SET:Font Shadow:Memory:true
|
||||||
|
SET:Brackets:Memory:false
|
||||||
|
SET:Fancy Font:Memory:false
|
||||||
|
SET:Text After Value:Memory:Mem
|
||||||
|
SET:Phrase:Auto GG:gg
|
||||||
|
SET:Scale:Potion Hud:3.0
|
||||||
|
SET:Font Shadow:Potion Hud:true
|
||||||
|
SET:Fancy Font:Potion Hud:false
|
||||||
|
SET:Show Potion Name:Potion Hud:true
|
||||||
|
SET:Potion Name Color:Potion Hud:-1:false:255
|
||||||
|
SET:Show Duration:Potion Hud:true
|
||||||
|
SET:Duration Color:Potion Hud:-6513257:false:255
|
||||||
|
SET:Potions In Inventory:Potion Hud:true
|
||||||
|
SET:Scale:Ping:3.0
|
||||||
|
SET:Background:Ping:true
|
||||||
|
SET:Background Color:Ping:-16777216:false:127
|
||||||
|
SET:Color:Ping:-1:false:255
|
||||||
|
SET:Font Shadow:Ping:true
|
||||||
|
SET:Brackets:Ping:false
|
||||||
|
SET:Fancy Font:Ping:false
|
||||||
|
SET:Text After Value:Ping:ms
|
||||||
|
SET:Speed:Item Physics:1.0
|
||||||
|
SET:Scale:Pack Display:3.0
|
||||||
|
SET:Background:Pack Display:true
|
||||||
|
SET:Background Color:Pack Display:-16777216:false:127
|
||||||
|
SET:Color:Pack Display:-1:false:255
|
||||||
|
SET:Font Shadow:Pack Display:true
|
||||||
|
SET:Brackets:Pack Display:false
|
||||||
|
SET:Fancy Font:Pack Display:false
|
||||||
|
SET:Text After Value:Pack Display:
|
||||||
|
SET:Pack Icon:Pack Display:true
|
||||||
|
SET:Pack Order:Pack Display:First Pack
|
||||||
|
SET:Pack Title Replacement:Pack Display:White Text Only
|
||||||
|
SET:Scale:Clock:3.0
|
||||||
|
SET:Background:Clock:true
|
||||||
|
SET:Background Color:Clock:-16777216:false:127
|
||||||
|
SET:Color:Clock:-1:false:255
|
||||||
|
SET:Font Shadow:Clock:true
|
||||||
|
SET:Brackets:Clock:false
|
||||||
|
SET:Fancy Font:Clock:false
|
||||||
|
SET:Text After Value:Clock:
|
||||||
|
SET:24 Hour Format:Clock:false
|
||||||
|
SET:Scale:Speedometer:3.0
|
||||||
|
SET:Background:Speedometer:true
|
||||||
|
SET:Background Color:Speedometer:-16777216:false:127
|
||||||
|
SET:Color:Speedometer:-1:false:255
|
||||||
|
SET:Font Shadow:Speedometer:true
|
||||||
|
SET:Brackets:Speedometer:false
|
||||||
|
SET:Fancy Font:Speedometer:false
|
||||||
|
SET:Text After Value:Speedometer:m/s
|
||||||
|
SET:Scale:Reach Display:3.0
|
||||||
|
SET:Background:Reach Display:true
|
||||||
|
SET:Background Color:Reach Display:-16777216:false:127
|
||||||
|
SET:Color:Reach Display:-1:false:255
|
||||||
|
SET:Font Shadow:Reach Display:true
|
||||||
|
SET:Brackets:Reach Display:false
|
||||||
|
SET:Fancy Font:Reach Display:false
|
||||||
|
SET:Text After Value:Reach Display:blocks
|
||||||
|
SET:Scale:Day Counter:3.0
|
||||||
|
SET:Background:Day Counter:true
|
||||||
|
SET:Background Color:Day Counter:-16777216:false:127
|
||||||
|
SET:Color:Day Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Day Counter:true
|
||||||
|
SET:Brackets:Day Counter:false
|
||||||
|
SET:Fancy Font:Day Counter:false
|
||||||
|
SET:Text After Value:Day Counter:Days
|
||||||
|
SET:Scale:Server Address:3.0
|
||||||
|
SET:Background:Server Address:true
|
||||||
|
SET:Background Color:Server Address:-16777216:false:127
|
||||||
|
SET:Color:Server Address:-1:false:255
|
||||||
|
SET:Font Shadow:Server Address:true
|
||||||
|
SET:Brackets:Server Address:false
|
||||||
|
SET:Fancy Font:Server Address:false
|
||||||
|
SET:Text After Value:Server Address:
|
||||||
|
SET:Hide Your Name:Nick Hider:true
|
||||||
|
SET:Hide Skins:Nick Hider:false
|
||||||
|
SET:Use Own Skin For All:Nick Hider:false
|
||||||
|
SET:Use Real Skin For Self:Nick Hider:true
|
||||||
|
SET:Custom Name:Nick Hider:You
|
||||||
|
SET:Time:Time Changer:0.0
|
||||||
|
SET:Scroll:Zoom:false
|
||||||
|
SET:Smooth Zoom:Zoom:true
|
||||||
|
SET:Zoom Speed:Zoom:14.0
|
||||||
|
SET:Factor:Zoom:4.0
|
||||||
|
SET:Smooth Camera:Zoom:true
|
||||||
|
SET:Scale:Combo Counter:3.0
|
||||||
|
SET:Background:Combo Counter:true
|
||||||
|
SET:Background Color:Combo Counter:-16777216:false:127
|
||||||
|
SET:Color:Combo Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Combo Counter:true
|
||||||
|
SET:Brackets:Combo Counter:false
|
||||||
|
SET:Fancy Font:Combo Counter:false
|
||||||
|
SET:Text After Value:Combo Counter:Combo
|
||||||
|
SET:Alpha:Hit Color:0.8
|
||||||
|
SET:Gold Ingot Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Nugget Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Ore Scale:UHC Overlay:1.5
|
||||||
|
SET:Gold Apple Scale:UHC Overlay:1.5
|
||||||
|
SET:Skull Scale:UHC Overlay:1.5
|
||||||
|
SET:FPS Boost:FPS Boost:true
|
||||||
|
SET:Advanced FPS Boost:FPS Boost:false
|
||||||
|
SET:Low Graphics Mode:FPS Boost:false
|
||||||
|
SET:Hud Optimization:FPS Boost:false
|
||||||
|
SET:Optimized Entity Movement:FPS Boost:true
|
||||||
|
SET:Lazy Chunk Loading:FPS Boost:Balance
|
||||||
|
SET:Occlusion Culling:FPS Boost:Balance
|
||||||
|
SET:Hide Tall Grass:FPS Boost:false
|
||||||
|
SET:Hide Flowers:FPS Boost:false
|
||||||
|
SET:Hide Fences:FPS Boost:false
|
||||||
|
SET:Hide Fence Gates:FPS Boost:false
|
||||||
|
SET:Hide Armor Stands:FPS Boost:false
|
||||||
|
SET:Hide Skulls:FPS Boost:false
|
||||||
|
SET:Hide Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Maps In Item Frames:FPS Boost:false
|
||||||
|
SET:Hide Stuck Arrows:FPS Boost:false
|
||||||
|
SET:Hide Ground Arrows:FPS Boost:false
|
||||||
|
SET:Hide Lava Particles:FPS Boost:false
|
||||||
|
SET:Hide Mob in Spawner:FPS Boost:false
|
||||||
|
SET:Hide Spawner Particles:FPS Boost:false
|
||||||
|
SET:Player Render Distance:FPS Boost:64.0
|
||||||
|
SET:Passive Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Hostile Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Misc. Entity Render Distance:FPS Boost:64.0
|
||||||
|
SET:Check glError:FPS Boost:false
|
||||||
|
SET:Do memory debug:FPS Boost:true
|
||||||
|
SET:Preset Crosshair:Crosshair:false
|
||||||
|
SET:Preset ID:Crosshair:1
|
||||||
|
SET:Type:Crosshair:Cross
|
||||||
|
SET:Crosshair Color:Crosshair:-1:false:255
|
||||||
|
SET:Player Color:Crosshair:-5231066:false:255
|
||||||
|
SET:Hostile Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Passive Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Outline Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Dot Color:Crosshair:-16777216:false:255
|
||||||
|
SET:Width:Crosshair:3.0
|
||||||
|
SET:Height:Crosshair:3.0
|
||||||
|
SET:Gap:Crosshair:2.0
|
||||||
|
SET:Thickness:Crosshair:1.0
|
||||||
|
SET:Scale:Crosshair:1.0
|
||||||
|
SET:Highlight Hostile Mobs:Crosshair:false
|
||||||
|
SET:Highlight Passive Mobs:Crosshair:false
|
||||||
|
SET:Highlight Players:Crosshair:false
|
||||||
|
SET:Crosshair Outline:Crosshair:false
|
||||||
|
SET:Crosshair Dot:Crosshair:false
|
||||||
|
SET:Vanilla Blendering:Crosshair:true
|
||||||
|
SET:Capes:Cosmetics:true
|
||||||
|
SET:Cape Type:Cosmetics:Dynamic Curved
|
||||||
|
SET:Cape Shoulders:Cosmetics:true
|
||||||
|
SET:Wings:Cosmetics:true
|
||||||
|
SET:Wings Scale:Cosmetics:1.0
|
||||||
|
SET:Bandanas:Cosmetics:true
|
||||||
|
SET:Hats:Cosmetics:true
|
||||||
|
SET:Shields:Cosmetics:true
|
||||||
|
SET:Custom Skins:Cosmetics:true
|
||||||
|
SET:Gui Debug:General:false
|
||||||
|
SET:Hide mods in F3:General:true
|
||||||
|
SET:Vanilla ESC Menu Layout:General:false
|
||||||
|
SET:Menu Background Blur:General:true
|
||||||
|
SET:Silent Logo Location:General:Bottom Right Corner
|
||||||
|
SET:Silent Button Sounds:General:false
|
||||||
|
SET:Menu Animations:General:true
|
||||||
|
SET:Menu Animations Speed:General:300.0
|
||||||
|
SET:Crosshair in F5:Render:false
|
||||||
|
SET:Centered Potion Inventory:Render:true
|
||||||
|
SET:Disable Achievements:Render:false
|
||||||
|
SET:Model Bobbing Only:Render:false
|
||||||
|
SET:Borderless Fullscreen:Render:false
|
||||||
|
SET:Weather:Weather:Clear
|
||||||
|
SET:Play Thunder Sound:Weather:true
|
||||||
|
SET:Background:Tab:true
|
||||||
|
SET:Disable Header:Tab:false
|
||||||
|
SET:Disable Footer:Tab:false
|
||||||
|
SET:Show Ping Numbers:Tab:true
|
||||||
|
SET:Show Nametag Icons:Tab:true
|
||||||
|
SET:Font Shadow:Chat:true
|
||||||
|
SET:Bar Animation:Chat:false
|
||||||
|
SET:Smooth:Chat:false
|
||||||
|
SET:Smooth Speed:Chat:4.0
|
||||||
|
SET:Disable Background:Chat:true
|
||||||
|
SET:Anti-Spam:Chat:false
|
||||||
|
SET:Dark Background:Inventory Blur:false
|
||||||
|
SET:Scale:Coordinates:3.0
|
||||||
|
SET:Background:Coordinates:true
|
||||||
|
SET:Background Color:Coordinates:-16777216:false:127
|
||||||
|
SET:Color:Coordinates:-1:false:255
|
||||||
|
SET:Font Shadow:Coordinates:true
|
||||||
|
SET:Brackets:Coordinates:false
|
||||||
|
SET:Fancy Font:Coordinates:false
|
||||||
|
SET:Show Biome:Coordinates:true
|
||||||
|
SET:Bounding Box:Hitboxes:true
|
||||||
|
SET:Bounding Box Color:Hitboxes:-1:false:255
|
||||||
|
SET:Eye Height:Hitboxes:false
|
||||||
|
SET:Eye Height Color:Hitboxes:-5231066:false:255
|
||||||
|
SET:Look Vector:Hitboxes:false
|
||||||
|
SET:Look Vector Color:Hitboxes:-12827479:false:255
|
||||||
|
SET:Line Width:Hitboxes:2.0
|
||||||
|
SET:Projectile Hitbox:Hitboxes:true
|
||||||
|
SET:Arrow Hitbox:Hitboxes:true
|
||||||
|
SET:Players Hitbox:Hitboxes:true
|
||||||
|
SET:Passive Hitbox:Hitboxes:true
|
||||||
|
SET:Monsters Hitbox:Hitboxes:true
|
||||||
|
SET:Fireballs Hitbox:Hitboxes:true
|
||||||
|
SET:Snowballs Hitbox:Hitboxes:true
|
||||||
|
SET:Wither Skulls Hitbox:Hitboxes:true
|
||||||
|
SET:Item Drops Hitbox:Hitboxes:true
|
||||||
|
SET:Fireworks Hitbox:Hitboxes:true
|
||||||
|
SET:XP Orbs Hitbox:Hitboxes:true
|
||||||
|
SET:Item Frames Hitbox:Hitboxes:true
|
||||||
|
SET:Show in F5:Nametags:true
|
||||||
|
SET:Show in F1:Nametags:false
|
||||||
|
SET:Background:Nametags:true
|
||||||
|
SET:Font Shadow:Nametags:false
|
||||||
|
SET:Show Nametag Icons:Nametags:true
|
||||||
|
SET:Show Nametag Messages:Nametags:true
|
||||||
|
SET:Scale:Scoreboard:1.0
|
||||||
|
SET:Background:Scoreboard:true
|
||||||
|
SET:Font Shadow:Scoreboard:true
|
||||||
|
SET:Numbers:Scoreboard:false
|
||||||
|
SET:Outline:Block Overlay:true
|
||||||
|
SET:Outline Color:Block Overlay:-1:false:255
|
||||||
|
SET:Outline Width:Block Overlay:3.0
|
||||||
|
SET:Fill:Block Overlay:false
|
||||||
|
SET:Fill Color:Block Overlay:-1:false:127
|
||||||
|
SET:Show Sharpness:Particles:true
|
||||||
|
SET:Always Sharpness Particles:Particles:false
|
||||||
|
SET:Sharpness Multiplier:Particles:1.0
|
||||||
|
SET:Show Criticals:Particles:true
|
||||||
|
SET:Criticals Multiplier:Particles:1.0
|
||||||
|
SET:Only Players Particles:Particles:false
|
||||||
|
SET:Cancel Impossible:Particles:false
|
||||||
|
SET:New Particles For Impossibles:Particles:false
|
||||||
|
SET:Health:Damage Tint:5.0
|
||||||
|
SET:Scale:Titles:1.0
|
||||||
|
SET:Amount:Color Saturation:1.0
|
||||||
|
SET:Boss Bar:Boss Bar:true
|
||||||
|
SET:Boss Text:Boss Bar:true
|
||||||
|
SET:Hide Direct Messages:ToggleChat:false
|
||||||
|
SET:Hide Shout Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Team Messages:ToggleChat:false
|
||||||
|
SET:Hide In-Game Messages (Excludes Team Chat):ToggleChat:false
|
||||||
|
SET:Hide Friend Join/Leave Message:ToggleChat:false
|
||||||
|
SET:Hide Friend Requests:ToggleChat:false
|
||||||
|
SET:Hide Guild Messages:ToggleChat:false
|
||||||
|
SET:Hide Guild Join/Leave Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Messages:ToggleChat:false
|
||||||
|
SET:Hide Party Invites:ToggleChat:false
|
||||||
|
SET:Hide Lobby Join Messages:ToggleChat:false
|
||||||
|
SET:Fire Height:Pack Tweaks:0.0
|
||||||
|
SET:Fire Opacity:Pack Tweaks:0.8999999761581421
|
||||||
|
SET:Hide Pumpkin Overlay:Pack Tweaks:false
|
||||||
|
SET:Water Fog:Pack Tweaks:true
|
||||||
|
SET:Scale:Player Counter:3.0
|
||||||
|
SET:Background:Player Counter:true
|
||||||
|
SET:Background Color:Player Counter:-16777216:false:127
|
||||||
|
SET:Color:Player Counter:-1:false:255
|
||||||
|
SET:Font Shadow:Player Counter:true
|
||||||
|
SET:Brackets:Player Counter:false
|
||||||
|
SET:Fancy Font:Player Counter:false
|
||||||
|
SET:Text After Value:Player Counter:Players Online
|
||||||
|
SET:Scale:BlockInfo:3.0
|
||||||
|
SET:Block Coords:BlockInfo:true
|
||||||
|
SET:Correct Tool:BlockInfo:true
|
||||||
|
SET:Break Time:BlockInfo:true
|
||||||
|
SET:Background:BlockInfo:true
|
||||||
|
SET:Background Color:BlockInfo:-16777216:false:127
|
||||||
|
SET:Color:BlockInfo:-1:false:255
|
||||||
|
SET:Font Shadow:BlockInfo:true
|
||||||
|
SET:Fancy Font:BlockInfo:false
|
||||||
|
SET:Amount:Motion Blur:0.5
|
||||||
|
ATC:/play solo_insane:13
|
After Width: | Height: | Size: 218 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 208 KiB |
BIN
src/main/resources/assets/minecraft/silentclient/icons/next.png
Normal file
After Width: | Height: | Size: 873 B |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 270 KiB |