Merge pull request #78 from Silent-Client/TEST2

Test2
This commit is contained in:
kirillsaint 2023-11-03 12:29:58 +06:00 committed by GitHub
commit 6636f2c93c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 1005 additions and 217 deletions

View File

@ -309,13 +309,13 @@ public class Client {
Client.logger.info("STARTING > launching-detector");
Requests.post("https://api.silentclient.net/_next/launch_v2", new JSONObject().put("branch", getBuildData().getBranch()).toString());
logger.info("STARTING > news");
String content = Requests.get("https://api.silentclient.net/_next/news/latest");
if(content != null) {
logger.info("STARTING > promo");
String panelContent = Requests.get("https://assets.silentclient.net/client/promo.json");
if(panelContent != null) {
try {
NewsResponse newsResponse = getGson().fromJson(content, NewsResponse.class);
PromoController.PromoResponse promoResponse = getGson().fromJson(panelContent, PromoController.PromoResponse.class);
GuiNews.news = newsResponse;
PromoController.setResponse(promoResponse);
} catch (Exception err) {
logger.catching(err);
}

View File

@ -36,7 +36,7 @@ public class UserTutorial extends SilentScreen {
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("BedWars");
this.configs.add("Minigames");
this.configs.add("PvP");
this.configs.add("Survival");

View File

@ -5,7 +5,6 @@ import net.minecraft.client.gui.Gui;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.util.ResourceLocation;
import net.silentclient.client.Client;
import net.silentclient.client.gui.SilentScreen;
@ -13,25 +12,17 @@ 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.utils.MouseCursorHandler;
import net.silentclient.client.utils.SCTextureManager;
import net.silentclient.client.utils.PromoController;
import net.silentclient.client.utils.TimerUtils;
import net.silentclient.client.utils.types.NewsResponse;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.URI;
import java.util.Random;
public class GuiNews extends SilentScreen {
public static ResourceLocation imageLocation = null;
public static BufferedImage image = null;
public static boolean loading = false;
public static boolean initPanel = false;
private TimerUtils logoTimer = new TimerUtils();
private int logoY = 0;
private final boolean firstTime;
public static NewsResponse news;
public GuiNews() {
this.firstTime = false;
@ -41,25 +32,9 @@ public class GuiNews extends SilentScreen {
this.firstTime = firstTime;
}
public static void loadPanel() {
if(image == null && !loading && news != null) {
loading = true;
(new Thread("NewsThread") {
public void run() {
GuiNews.image = SCTextureManager.getImage(news.getItem().getCover());
GuiNews.loading = false;
}
}).start();
}
if(image != null && !initPanel) {
imageLocation = Minecraft.getMinecraft().getTextureManager().getDynamicTextureLocation("image_panel_" + new Random().nextLong(), new DynamicTexture(image));
initPanel = true;
}
}
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
loadPanel();
PromoController.getResponse().update();
MouseCursorHandler.CursorType cursorType = getCursor(silentInputs, buttonList);
GlStateManager.disableAlpha();
Client.backgroundPanorama.renderSkybox(mouseX, mouseY, partialTicks);
@ -71,11 +46,23 @@ public class GuiNews extends SilentScreen {
}
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
if(imageLocation != null) {
RenderUtil.drawImage(imageLocation, (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168, false);
if(MouseUtils.isInside(mouseX, mouseY, (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168)) {
if(PromoController.getResponse().getPanels().size() > 1) {
if(MouseUtils.isInside(mouseX, mouseY, 40, this.height / 2 - 10, 20, 20) || MouseUtils.isInside(mouseX, mouseY, this.width - 40 - 20, this.height / 2 - 10, 20, 20)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
}
RenderUtil.drawImage(new ResourceLocation("silentclient/icons/back.png"), 40, this.height / 2 - 10, 20, 20);
RenderUtil.drawImage(new ResourceLocation("silentclient/icons/next.png"), this.width - 40 - 20, this.height / 2 - 10, 20, 20);
}
if(PromoController.getResponse().getCurrentPanel() != null) {
if(PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
RenderUtil.drawImage(PromoController.getResponse().getCurrentPanel().getImageLocation(), (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168, false);
if(MouseUtils.isInside(mouseX, mouseY, (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
}
} else {
PromoController.getResponse().getCurrentPanel().loadImage();
}
}
super.drawScreen(mouseX, mouseY, partialTicks);
@ -100,6 +87,7 @@ public class GuiNews extends SilentScreen {
Client.backgroundPanorama.updateWidthHeight(this.width, this.height);
this.buttonList.add(new Button(1, (this.width / 2) - (98 / 2), this.height - 30, 98, 20, "Exit"));
super.initGui();
PromoController.getResponse().setPanelIndex(0);
}
@Override
@ -112,11 +100,22 @@ public class GuiNews extends SilentScreen {
@Override
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
super.mouseClicked(mouseX, mouseY, mouseButton);
if(MouseUtils.isInside(mouseX, mouseY, (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168) && news != null) {
try {
if(PromoController.getResponse().getPanels().size() > 1) {
if(MouseUtils.isInside(mouseX, mouseY, 40, this.height / 2 - 10, 20, 20)) {
PromoController.getResponse().prevPanel();
return;
}
if(MouseUtils.isInside(mouseX, mouseY, this.width - 40 - 20, this.height / 2 - 10, 20, 20)) {
PromoController.getResponse().nextPanel();
return;
}
}
if(MouseUtils.isInside(mouseX, mouseY, (this.width / 2) - (300 / 2), (this.height / 2) - (168 / 2) - 10, 300, 168) && PromoController.getResponse().getCurrentPanel() != null && PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
try {
Class<?> oclass = Class.forName("java.awt.Desktop");
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("https://silentclient.net/news/" + GuiNews.news.getItem().id)});
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke(null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI(PromoController.getResponse().getCurrentPanel().getRedirectUrl())});
} catch (Throwable err) {
err.printStackTrace();
}

View File

@ -16,6 +16,7 @@ import net.silentclient.client.gui.silentmainmenu.components.AccountPicker;
import net.silentclient.client.gui.util.RenderUtil;
import net.silentclient.client.utils.ColorUtils;
import net.silentclient.client.utils.MouseCursorHandler;
import net.silentclient.client.utils.PromoController;
import java.awt.*;
import java.io.IOException;
@ -56,7 +57,7 @@ public class LiteMainMenu extends SilentScreen
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
GuiNews.loadPanel();
PromoController.getResponse().update();
MouseCursorHandler.CursorType cursorType = getCursor(silentInputs, buttonList);
GlStateManager.disableAlpha();
Client.backgroundPanorama.renderSkybox(mouseX, mouseY, partialTicks);
@ -74,14 +75,18 @@ public class LiteMainMenu extends SilentScreen
ColorUtils.setColor(-1);
Client.getInstance().getSilentFontRenderer().drawString(3, height - 14, "SLC Lite 1.8.9", 12, SilentFontRenderer.FontType.TITLE);
if(GuiNews.imageLocation != null) {
if(MouseUtils.isInside(mouseX, mouseY, this.width - 74, this.height - 42, 71, 40)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
this.bannerAnimation.setAnimation(4, 20);
if(PromoController.getResponse().getCurrentPanel() != null) {
if(PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
if(MouseUtils.isInside(mouseX, mouseY, this.width - 74, this.height - 42, 71, 40)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
this.bannerAnimation.setAnimation(4, 20);
} else {
this.bannerAnimation.setAnimation(0, 30);
}
RenderUtil.drawImage(PromoController.getResponse().getCurrentPanel().getImageLocation(), this.width - 74 + (-this.bannerAnimation.getValue()), this.height - 42 + (-this.bannerAnimation.getValue()), 71, 40, false);
} else {
this.bannerAnimation.setAnimation(0, 30);
PromoController.getResponse().getCurrentPanel().loadImage();
}
RenderUtil.drawImage(GuiNews.imageLocation, this.width - 74 + (-this.bannerAnimation.getValue()), this.height - 42 + (-this.bannerAnimation.getValue()), 71, 40, false);
}
MouseCursorHandler.CursorType accountCursor = accountPicker.draw(mc, mouseX, mouseY);
@ -140,11 +145,11 @@ public class LiteMainMenu extends SilentScreen
@Override
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
super.mouseClicked(mouseX, mouseY, mouseButton);
if(MouseUtils.isInside(mouseX, mouseY, this.width - 74, this.height - 42, 71, 40)) {
if(MouseUtils.isInside(mouseX, mouseY, this.width - 74, this.height - 42, 71, 40) && PromoController.getResponse().getCurrentPanel() != null && PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
try {
Class<?> oclass = Class.forName("java.awt.Desktop");
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("https://silentclient.net/news/" + GuiNews.news.getItem().id)});
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke(null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI(PromoController.getResponse().getCurrentPanel().getRedirectUrl())});
} catch (Throwable err) {
err.printStackTrace();
}

View File

@ -13,7 +13,6 @@ import net.silentclient.client.cosmetics.gui.CosmeticsGui;
import net.silentclient.client.gui.SilentScreen;
import net.silentclient.client.gui.elements.IconButton;
import net.silentclient.client.gui.font.SilentFontRenderer;
import net.silentclient.client.gui.lite.GuiNews;
import net.silentclient.client.gui.lite.LiteMainMenu;
import net.silentclient.client.gui.lite.clickgui.utils.MouseUtils;
import net.silentclient.client.gui.lite.clickgui.utils.RenderUtils;
@ -22,6 +21,7 @@ import net.silentclient.client.gui.silentmainmenu.components.MenuOption;
import net.silentclient.client.gui.theme.button.IButtonTheme;
import net.silentclient.client.gui.util.RenderUtil;
import net.silentclient.client.utils.MouseCursorHandler;
import net.silentclient.client.utils.PromoController;
import net.silentclient.client.utils.SCTextureManager;
import java.awt.*;
@ -79,7 +79,6 @@ public class MainMenuConcept extends SilentScreen {
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
GuiNews.loadPanel();
MouseCursorHandler.CursorType cursorType = getCursor(silentInputs, buttonList);
this.loadSkin();
GlStateManager.disableAlpha();
@ -93,12 +92,18 @@ public class MainMenuConcept extends SilentScreen {
RenderUtil.drawImage(new ResourceLocation("silentclient/images/steve.png"), width - 120, height / 2 - (75), 62, 150, false);
}
if(GuiNews.imageLocation != null) {
if(MouseUtils.isInside(mouseX, mouseY, 10, 10, 109, 63)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
PromoController.getResponse().update();
if(PromoController.getResponse().getCurrentPanel() != null) {
if(PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
if(MouseUtils.isInside(mouseX, mouseY, 10, 10, 109, 63)) {
cursorType = MouseCursorHandler.CursorType.POINTER;
}
RenderUtils.drawRect(10, 10, 109, 63, -1);
RenderUtil.drawImage(PromoController.getResponse().getCurrentPanel().getImageLocation(), 12, 12, 105, 59, false);
} else {
PromoController.getResponse().getCurrentPanel().loadImage();
}
RenderUtils.drawRect(10, 10, 109, 63, -1);
RenderUtil.drawImage(GuiNews.imageLocation, 12, 12, 105, 59, false);
}
Client.getInstance().getSilentFontRenderer().drawString(3, height - 14, "Silent Client 1.8.9", 12, SilentFontRenderer.FontType.TITLE);
@ -153,11 +158,11 @@ public class MainMenuConcept extends SilentScreen {
@Override
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
super.mouseClicked(mouseX, mouseY, mouseButton);
if(MouseUtils.isInside(mouseX, mouseY, 10, 10, 109, 63)) {
if(MouseUtils.isInside(mouseX, mouseY, 10, 10, 109, 63) && PromoController.getResponse().getCurrentPanel() != null) {
try {
Class<?> oclass = Class.forName("java.awt.Desktop");
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("https://silentclient.net/news/" + GuiNews.news.getItem().id)});
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke(null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI(PromoController.getResponse().getCurrentPanel().getRedirectUrl())});
} catch (Throwable err) {
err.printStackTrace();
}

View File

@ -7,11 +7,11 @@ import net.silentclient.client.Client;
import net.silentclient.client.cosmetics.gui.CosmeticsGui;
import net.silentclient.client.gui.SilentScreen;
import net.silentclient.client.gui.font.SilentFontRenderer;
import net.silentclient.client.gui.lite.GuiNews;
import net.silentclient.client.gui.lite.LiteMainMenu;
import net.silentclient.client.gui.lite.clickgui.utils.MouseUtils;
import net.silentclient.client.gui.lite.clickgui.utils.RenderUtils;
import net.silentclient.client.gui.util.RenderUtil;
import net.silentclient.client.utils.PromoController;
import java.awt.*;
import java.io.IOException;
@ -31,7 +31,7 @@ public class SilentMainMenu extends SilentScreen {
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
GuiNews.loadPanel();
PromoController.getResponse().update();
GlStateManager.disableAlpha();
Client.backgroundPanorama.renderSkybox(mouseX, mouseY, partialTicks);
GlStateManager.enableAlpha();
@ -51,8 +51,12 @@ public class SilentMainMenu extends SilentScreen {
blockY = 70;
}
RenderUtils.drawRect(blockX, blockY, 320, 150, new Color(20, 20, 20).getRGB());
if(GuiNews.imageLocation != null) {
RenderUtil.drawImage(GuiNews.imageLocation, blockX + 78, blockY + 10, 231, 130, false);
if(PromoController.getResponse().getCurrentPanel() != null) {
if(PromoController.getResponse().getCurrentPanel().getImageLocation() != null) {
RenderUtil.drawImage(PromoController.getResponse().getCurrentPanel().getImageLocation(), blockX + 78, blockY + 10, 231, 130, false);
} else {
PromoController.getResponse().getCurrentPanel().loadImage();
}
}
int optionY = blockY + 10;
@ -121,12 +125,11 @@ public class SilentMainMenu extends SilentScreen {
if(blockY < 70) {
blockY = 70;
}
if(MouseUtils.isInside(mouseX, mouseY, blockX + 78, blockY + 10, 231, 130)) {
if(MouseUtils.isInside(mouseX, mouseY, blockX + 78, blockY + 10, 231, 130) && PromoController.getResponse().getCurrentPanel() != null) {
try {
Class<?> oclass = Class.forName("java.awt.Desktop");
Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("https://silentclient.net/news/" + GuiNews.news.getItem().id)});
oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI(PromoController.getResponse().getCurrentPanel().getRedirectUrl())});
} catch (Throwable err) {
err.printStackTrace();
}

View File

@ -48,7 +48,7 @@ public class NameTagRenderingHooks {
if (d0 <= (double)(maxDistance * maxDistance))
{
boolean fontShadow = Client.getInstance().getModInstances().getModByClass(NametagsMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(NametagsMod.class, "Font Shadow").getValBoolean();
boolean icons = Client.getInstance().getModInstances().getModByClass(NametagsMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(NametagsMod.class, "Show Nametag Icons").getValBoolean();
boolean icons = !Client.getInstance().getModInstances().getModByClass(NametagsMod.class).isEnabled() || Client.getInstance().getSettingsManager().getSettingByClass(NametagsMod.class, "Show Nametag Icons").getValBoolean();
boolean background = !Client.getInstance().getModInstances().getModByClass(NametagsMod.class).isEnabled() || Client.getInstance().getModInstances().getModByClass(NametagsMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(NametagsMod.class, "Background").getValBoolean();
FontRenderer fontrenderer = render.getFontRendererFromRenderManager();
float f = 1.6F;

View File

@ -78,7 +78,7 @@ public abstract class GuiPlayerTabOverlayMixin {
} catch (Exception err) {
}
int k = this.mc.fontRendererObj.getStringWidth(this.getPlayerName(networkplayerinfo)) + (isSilent && Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean() ? 9 : 0);
int k = this.mc.fontRendererObj.getStringWidth(this.getPlayerName(networkplayerinfo)) + (isSilent && (!Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() || Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean()) ? 9 : 0);
i = Math.max(i, k);
if (scoreObjectiveIn != null && scoreObjectiveIn.getRenderType() != IScoreObjectiveCriteria.EnumRenderType.HEARTS) {
k = this.mc.fontRendererObj.getStringWidth(" " + scoreboardIn.getValueFromObjective(networkplayerinfo.getGameProfile().getName(), scoreObjectiveIn).getScorePoints());
@ -190,7 +190,7 @@ public abstract class GuiPlayerTabOverlayMixin {
if(entityplayer != null) {
isSilent = Boolean.parseBoolean(Players.getPlayerStatus(gameprofile.getName().equalsIgnoreCase(Client.getInstance().getAccount().getUsername()), gameprofile.getName(), entityplayer.getUniqueID(), (AbstractClientPlayer) entityplayer));
}
if(isSilent && entityplayer != null && Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean()) {
if(isSilent && entityplayer != null && (!Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() || Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean())) {
ColorUtils.setColor(-1);
this.mc.getTextureManager().bindTexture(((AbstractClientPlayerExt) entityplayer).silent$getPlayerIcon().getLocation());
Gui.drawModalRectWithCustomSizedTexture(j2, k2, 8, 8, 8, 8, 8, 8);
@ -230,7 +230,7 @@ public abstract class GuiPlayerTabOverlayMixin {
if (scoreObjectiveIn != null && networkplayerinfo1.getGameType() != WorldSettings.GameType.SPECTATOR)
{
int k5 = (j2 - (isSilent && Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean() ? 9 : 0)) + i + 1;
int k5 = (j2 - (isSilent && (!Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() || Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean()) ? 9 : 0)) + i + 1;
int l5 = k5 + l;
if (l5 - k5 > 5)
@ -239,7 +239,7 @@ public abstract class GuiPlayerTabOverlayMixin {
}
}
this.drawPing(i1, j2 - (flag ? 9 : 0) - (isSilent && Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() && Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean() ? 9 : 0), k2, networkplayerinfo1);
this.drawPing(i1, j2 - (flag ? 9 : 0) - (isSilent && (!Client.getInstance().getModInstances().getModByClass(TabMod.class).isEnabled() || Client.getInstance().getSettingsManager().getSettingByClass(TabMod.class, "Show Nametag Icons").getValBoolean()) ? 9 : 0), k2, networkplayerinfo1);
}
}

View File

@ -157,9 +157,9 @@ public abstract class ModDraggable extends Mod implements IRenderer {
ColorUtils.setColor(-1);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 12, "y: " + y, 6, SilentFontRenderer.FontType.TITLE);
ColorUtils.setColor(-1);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 18, "width: " + (int) this.getScaledWidth(), 6, SilentFontRenderer.FontType.TITLE);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 18, "width: " + this.getScaledWidth(), 6, SilentFontRenderer.FontType.TITLE);
ColorUtils.setColor(-1);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 24, "height: " + (int) this.getScaledHeight(), 6, SilentFontRenderer.FontType.TITLE);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 24, "height: " + this.getScaledHeight(), 6, SilentFontRenderer.FontType.TITLE);
ColorUtils.setColor(-1);
Client.getInstance().getSilentFontRenderer().drawString(debugX, debugY + 30, "dragging: " + this.isDragging(), 6, SilentFontRenderer.FontType.TITLE);
ColorUtils.setColor(-1);

View File

@ -28,7 +28,7 @@ public class KeystrokesMod extends ModDraggable {
@Override
public void setup() {
this.addSliderSetting("Scale", this, 2.23F, 1.0F, 5.0F, false);
this.addSliderSetting("Scale", this, 2.20F, 1.0F, 5.0F, false);
setUpdated(true);
ArrayList<String> cpsModes = new ArrayList<>();
cpsModes.add("None");
@ -147,7 +147,7 @@ public class KeystrokesMod extends ModDraggable {
@Override
public int getWidth() {
return (Client.getInstance().getSettingsManager().getSettingByName(this, "Show LMB/RMB").getValBoolean() ? KeystrokesMode.WASD_MOUSE.getWidth() : KeystrokesMode.WASD.getWidth()) - 1;
return Client.getInstance().getSettingsManager().getSettingByName(this, "Show LMB/RMB").getValBoolean() ? KeystrokesMode.WASD_MOUSE.getWidth() : KeystrokesMode.WASD.getWidth();
}
@Override

View File

@ -0,0 +1,128 @@
package net.silentclient.client.utils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.util.ResourceLocation;
import net.silentclient.client.Client;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.Random;
public class PromoController {
public static PromoResponse promo;
public static boolean loading = false;
public static PromoResponse getResponse() {
return promo;
}
public static void setResponse(PromoResponse promo) {
PromoController.promo = promo;
}
public class PromoResponse {
public ArrayList<Panel> panels;
private int panelIndex = 0;
private TimerUtils timer;
public int getPanelIndex() {
return panelIndex;
}
public void update() {
if(timer == null) {
timer = new TimerUtils();
}
if(timer.delay(6000)) {
nextPanel();
}
}
public void setPanelIndex(int panelIndex) {
if(timer == null) {
timer = new TimerUtils();
}
timer.reset();
this.panelIndex = panelIndex;
}
public void prevPanel() {
if(timer == null) {
timer = new TimerUtils();
}
timer.reset();
if(panelIndex == 0) {
this.panelIndex = PromoController.getResponse().getPanels().size() - 1;
} else {
this.panelIndex -= 1;
}
}
public void nextPanel() {
if(timer == null) {
timer = new TimerUtils();
}
timer.reset();
if(panelIndex == PromoController.getResponse().getPanels().size() - 1) {
this.panelIndex = 0;
} else {
this.panelIndex += 1;
}
}
public Panel getCurrentPanel() {
return panels.get(panelIndex) != null ? panels.get(panelIndex) : null;
}
public ArrayList<Panel> getPanels() {
return panels;
}
}
public class Panel {
public String imageUrl;
public String redirectUrl;
public ResourceLocation imageLocation;
public BufferedImage image = null;
public boolean initImage = false;
public void loadImage() {
if(image == null && !PromoController.loading && !initImage) {
PromoController.loading = true;
(new Thread("PromoImageThread") {
public void run() {
Client.logger.info(String.format("Downloading promo image %s...", imageUrl));
BufferedImage avatar = SCTextureManager.getImage(imageUrl);
if(avatar != null) {
Client.logger.info(String.format("Promo image %s successfully downloaded!", imageUrl));
image = avatar;
} else {
Client.logger.info(String.format("Promo image %s downloading failed!", imageUrl));
initImage = true;
}
PromoController.loading = false;
}
}).start();
}
if(image != null && !initImage) {
Client.logger.info(String.format("Crating ResourceLocation of promo image %s...", imageUrl));
imageLocation = Minecraft.getMinecraft().getTextureManager().getDynamicTextureLocation("promo_image_" + new Random().nextLong(), new DynamicTexture(image));
initImage = true;
}
}
public ResourceLocation getImageLocation() {
return imageLocation;
}
public String getImageUrl() {
return imageUrl;
}
public String getRedirectUrl() {
return redirectUrl;
}
}
}

View File

@ -1,11 +1,11 @@
MOD:FPS:true
POS:FPS:0.9078125:0.2
POS:FPS:0.93125:0.15
MOD:CPS:true
POS:CPS:0.9078125:0.24166666666666667
POS:CPS:0.93125:0.17777777777777778
MOD:Toggle Sprint:false
POS:Toggle Sprint:0.0:0.0
MOD:Keystrokes:true
POS:Keystrokes:0.9078125:0.0
POS:Keystrokes:0.93125:0.002777777777777778
MOD:Perspective:false
MOD:Animations:true
MOD:Armor Status:false
@ -20,7 +20,7 @@ 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:FullBright:true
MOD:Clock:false
POS:Clock:0.0:0.0
MOD:Speedometer:false
@ -50,9 +50,9 @@ MOD:Render:false
MOD:Weather:false
MOD:Tab:true
MOD:Chat:true
MOD:Inventory Blur:false
MOD:Inventory Blur:true
MOD:Coordinates:true
POS:Coordinates:0.0015625:0.002777777777777778
POS:Coordinates:0.003125:0.005555555555555556
MOD:Chunk Borders:false
MOD:Hitboxes:false
MOD:Nametags:true
@ -71,7 +71,8 @@ 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
MOD:Quickplay:false
SET:Scale:FPS:2.0
SET:Background:FPS:true
SET:Background Color:FPS:-16777216:false:127
SET:Color:FPS:-1:false:255
@ -79,7 +80,7 @@ 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:Scale:CPS:2.0
SET:Background:CPS:true
SET:Background Color:CPS:-16777216:false:127
SET:Color:CPS:-1:false:255
@ -99,39 +100,43 @@ 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:Scale:Keystrokes:2.20
SET:Font Shadow:Keystrokes:true
SET:Fancy Font:Keystrokes:false
SET:Background:Keystrokes:true
SET:CPS Mode:Keystrokes:None
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:Keybind:Perspective:56
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 3rd Person Block 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:Consume Animation:Animations:true
SET:Block-Hitting Animation:Animations:true
SET:Red Armor:Animations:true
SET:Punching During Usage:Animations:true
SET:Item Switching Animation:Animations:true
SET:Remove Health Bar Flashing:Animations:true
SET:Scale:Armor Status:2.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:Scale:Memory:2.0
SET:Background:Memory:true
SET:Background Color:Memory:-16777216:false:127
SET:Color:Memory:-1:false:255
@ -140,7 +145,7 @@ 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:Scale:Potion Hud:2.0
SET:Font Shadow:Potion Hud:true
SET:Fancy Font:Potion Hud:false
SET:Show Potion Name:Potion Hud:true
@ -148,7 +153,7 @@ 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:Scale:Ping:2.0
SET:Background:Ping:true
SET:Background Color:Ping:-16777216:false:127
SET:Color:Ping:-1:false:255
@ -157,27 +162,25 @@ 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:Scale:Pack Display:2.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:Scale:Clock:2.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:Scale:Speedometer:2.0
SET:Background:Speedometer:true
SET:Background Color:Speedometer:-16777216:false:127
SET:Color:Speedometer:-1:false:255
@ -185,7 +188,7 @@ 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:Scale:Reach Display:2.0
SET:Background:Reach Display:true
SET:Background Color:Reach Display:-16777216:false:127
SET:Color:Reach Display:-1:false:255
@ -193,7 +196,7 @@ 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:Scale:Day Counter:2.0
SET:Background:Day Counter:true
SET:Background Color:Day Counter:-16777216:false:127
SET:Color:Day Counter:-1:false:255
@ -201,7 +204,7 @@ 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:Scale:Server Address:2.0
SET:Background:Server Address:true
SET:Background Color:Server Address:-16777216:false:127
SET:Color:Server Address:-1:false:255
@ -215,12 +218,13 @@ 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:Keybind:Zoom:46
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:Scale:Combo Counter:2.0
SET:Background:Combo Counter:true
SET:Background Color:Combo Counter:-16777216:false:127
SET:Color:Combo Counter:-1:false:255
@ -293,6 +297,7 @@ 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:Mod Menu Keybind:General:54
SET:Silent Logo Location:General:Bottom Right Corner
SET:Silent Button Sounds:General:false
SET:Menu Animations:General:true
@ -316,7 +321,7 @@ 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:Scale:Coordinates:2.0
SET:Background:Coordinates:true
SET:Background Color:Coordinates:-16777216:false:127
SET:Color:Coordinates:-1:false:255
@ -357,7 +362,7 @@ 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:Fill Color:Block Overlay:-1:false:127
SET:Show Sharpness:Particles:true
SET:Always Sharpness Particles:Particles:false
SET:Sharpness Multiplier:Particles:1.0
@ -386,7 +391,7 @@ 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:Scale:Player Counter:2.0
SET:Background:Player Counter:true
SET:Background Color:Player Counter:-16777216:false:127
SET:Color:Player Counter:-1:false:255
@ -394,7 +399,7 @@ 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:Scale:BlockInfo:2.0
SET:Block Coords:BlockInfo:true
SET:Correct Tool:BlockInfo:true
SET:Break Time:BlockInfo:true
@ -404,4 +409,161 @@ 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
SET:Open Menu:Quickplay:12
SET:Quickplay Mode&Hypixel&/lobby main:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&Hypixel&/stuck:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby arcade:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_day_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_bounty_hunters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pvp_ctw:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_creeper_attack:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_dragon_wars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_ender_spleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_farm_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_soccer:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_starwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_party_pooper:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_prop_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hole_in_the_wall:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_simon_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_santa_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_mini_walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_party_games_1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pixel_painters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_throw_out:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_dead_end:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_bad_blood:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_alien_arcadium:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby bedwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_three:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_two_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_castle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby blitz:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby buildbattle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_pro:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_guess_the_build:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play vampirez:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_solo:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_teams:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play paintball:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_1v1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tkr:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby cops:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby duels:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_blitz_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bow_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bowspleef_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_boxing_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_2v2v2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_capture_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_classic_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_combo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_potion_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_parkour_eight:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sumo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_meetup:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby murder:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_assassins:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_infection:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_double_up:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby skywars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_hunters_vs_beasts:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_2v2_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_friends_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_1v1_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby tnt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntrun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_pvprun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_bowspleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntag:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby warlords:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_ctf_mini:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_domination:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_team_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby woolwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play wool_wool_wars_two_four:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BLOCK_PARTY:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DROPPER:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play MURDERMYSTERY_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_SOLO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_TEAM:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_4v4v4v4:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_THE_BRIDGE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_BOXING:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_COMBO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_NODEBUFF:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_OP:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_PEARL_FIGHT:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_STICK_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_SUMO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_UHC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_SOLO_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_TEAM_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_RANKED:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_RUN:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_TAG:Quickplay:-1
ATC:/ce fushka:40

View File

@ -1,11 +1,11 @@
MOD:FPS:false
POS:FPS:0.0:0.0
POS:FPS:0.93125:0.15
MOD:CPS:false
POS:CPS:0.0:0.0
POS:CPS:0.93125:0.17777777777777778
MOD:Toggle Sprint:false
POS:Toggle Sprint:0.0:0.0
MOD:Keystrokes:false
POS:Keystrokes:0.0:0.0
POS:Keystrokes:0.93125:0.002777777777777778
MOD:Perspective:false
MOD:Animations:true
MOD:Armor Status:false
@ -20,7 +20,7 @@ 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:FullBright:true
MOD:Clock:false
POS:Clock:0.0:0.0
MOD:Speedometer:false
@ -50,14 +50,14 @@ MOD:Render:false
MOD:Weather:false
MOD:Tab:true
MOD:Chat:true
MOD:Inventory Blur:false
MOD:Inventory Blur:true
MOD:Coordinates:true
POS:Coordinates:0.0015625:0.002777777777777778
POS:Coordinates:0.003125:0.005555555555555556
MOD:Chunk Borders:false
MOD:Hitboxes:false
MOD:Nametags:true
MOD:Scoreboard:true
MOD:Block Overlay:false
MOD:Block Overlay:true
MOD:Particles:false
MOD:Damage Tint:false
MOD:Titles:true
@ -71,7 +71,8 @@ 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
MOD:Quickplay:false
SET:Scale:FPS:2.0
SET:Background:FPS:true
SET:Background Color:FPS:-16777216:false:127
SET:Color:FPS:-1:false:255
@ -79,7 +80,7 @@ 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:Scale:CPS:2.0
SET:Background:CPS:true
SET:Background Color:CPS:-16777216:false:127
SET:Color:CPS:-1:false:255
@ -99,39 +100,43 @@ 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:Scale:Keystrokes:2.20
SET:Font Shadow:Keystrokes:true
SET:Fancy Font:Keystrokes:false
SET:Background:Keystrokes:true
SET:CPS Mode:Keystrokes:None
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:Keybind:Perspective:56
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 3rd Person Block 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:Consume Animation:Animations:true
SET:Block-Hitting Animation:Animations:true
SET:Red Armor:Animations:true
SET:Punching During Usage:Animations:true
SET:Item Switching Animation:Animations:true
SET:Remove Health Bar Flashing:Animations:true
SET:Scale:Armor Status:2.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:Scale:Memory:2.0
SET:Background:Memory:true
SET:Background Color:Memory:-16777216:false:127
SET:Color:Memory:-1:false:255
@ -140,7 +145,7 @@ 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:Scale:Potion Hud:2.0
SET:Font Shadow:Potion Hud:true
SET:Fancy Font:Potion Hud:false
SET:Show Potion Name:Potion Hud:true
@ -148,7 +153,7 @@ 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:Scale:Ping:2.0
SET:Background:Ping:true
SET:Background Color:Ping:-16777216:false:127
SET:Color:Ping:-1:false:255
@ -157,27 +162,25 @@ 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:Scale:Pack Display:2.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:Scale:Clock:2.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:Scale:Speedometer:2.0
SET:Background:Speedometer:true
SET:Background Color:Speedometer:-16777216:false:127
SET:Color:Speedometer:-1:false:255
@ -185,7 +188,7 @@ 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:Scale:Reach Display:2.0
SET:Background:Reach Display:true
SET:Background Color:Reach Display:-16777216:false:127
SET:Color:Reach Display:-1:false:255
@ -193,7 +196,7 @@ 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:Scale:Day Counter:2.0
SET:Background:Day Counter:true
SET:Background Color:Day Counter:-16777216:false:127
SET:Color:Day Counter:-1:false:255
@ -201,7 +204,7 @@ 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:Scale:Server Address:2.0
SET:Background:Server Address:true
SET:Background Color:Server Address:-16777216:false:127
SET:Color:Server Address:-1:false:255
@ -215,12 +218,13 @@ 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:Keybind:Zoom:46
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:Scale:Combo Counter:2.0
SET:Background:Combo Counter:true
SET:Background Color:Combo Counter:-16777216:false:127
SET:Color:Combo Counter:-1:false:255
@ -293,6 +297,7 @@ 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:Mod Menu Keybind:General:54
SET:Silent Logo Location:General:Bottom Right Corner
SET:Silent Button Sounds:General:false
SET:Menu Animations:General:true
@ -316,7 +321,7 @@ 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:Scale:Coordinates:2.0
SET:Background:Coordinates:true
SET:Background Color:Coordinates:-16777216:false:127
SET:Color:Coordinates:-1:false:255
@ -356,7 +361,7 @@ 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:Block Overlay:true
SET:Fill Color:Block Overlay:-1:false:127
SET:Show Sharpness:Particles:true
SET:Always Sharpness Particles:Particles:false
@ -386,7 +391,7 @@ 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:Scale:Player Counter:2.0
SET:Background:Player Counter:true
SET:Background Color:Player Counter:-16777216:false:127
SET:Color:Player Counter:-1:false:255
@ -394,7 +399,7 @@ 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:Scale:BlockInfo:2.0
SET:Block Coords:BlockInfo:true
SET:Correct Tool:BlockInfo:true
SET:Break Time:BlockInfo:true
@ -404,4 +409,161 @@ 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
SET:Open Menu:Quickplay:12
SET:Quickplay Mode&Hypixel&/lobby main:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&Hypixel&/stuck:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby arcade:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_day_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_bounty_hunters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pvp_ctw:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_creeper_attack:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_dragon_wars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_ender_spleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_farm_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_soccer:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_starwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_party_pooper:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_prop_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hole_in_the_wall:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_simon_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_santa_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_mini_walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_party_games_1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pixel_painters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_throw_out:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_dead_end:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_bad_blood:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_alien_arcadium:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby bedwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_three:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_two_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_castle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby blitz:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby buildbattle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_pro:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_guess_the_build:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play vampirez:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_solo:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_teams:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play paintball:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_1v1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tkr:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby cops:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby duels:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_blitz_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bow_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bowspleef_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_boxing_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_2v2v2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_capture_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_classic_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_combo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_potion_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_parkour_eight:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sumo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_meetup:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby murder:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_assassins:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_infection:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_double_up:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby skywars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_hunters_vs_beasts:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_2v2_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_friends_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_1v1_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby tnt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntrun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_pvprun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_bowspleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntag:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby warlords:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_ctf_mini:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_domination:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_team_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby woolwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play wool_wool_wars_two_four:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BLOCK_PARTY:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DROPPER:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play MURDERMYSTERY_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_SOLO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_TEAM:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_4v4v4v4:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_THE_BRIDGE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_BOXING:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_COMBO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_NODEBUFF:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_OP:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_PEARL_FIGHT:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_STICK_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_SUMO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_UHC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_SOLO_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_TEAM_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_RANKED:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_RUN:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_TAG:Quickplay:-1
ATC:/ce fushka:40

View File

@ -1,26 +1,26 @@
MOD:FPS:true
POS:FPS:0.9078125:0.2
POS:FPS:0.93125:0.15
MOD:CPS:true
POS:CPS:0.9078125:0.24166666666666667
POS:CPS:0.93125:0.17777777777777778
MOD:Toggle Sprint:true
POS:Toggle Sprint:0.5046875:0.9166666666666666
POS:Toggle Sprint:0.509375:0.9027777777777778
MOD:Keystrokes:true
POS:Keystrokes:0.9078125:0.0
POS:Keystrokes:0.93125:0.002777777777777778
MOD:Perspective:false
MOD:Animations:true
MOD:Armor Status:true
POS:Armor Status:0.0015625:0.3527777777777778
POS:Armor Status:0.003125:0.40555555555555556
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
POS:Ping:0.93125:0.20555555555555555
MOD:Item Physics:false
MOD:Pack Display:false
POS:Pack Display:0.0:0.0
MOD:FullBright:false
MOD:FullBright:true
MOD:Clock:false
POS:Clock:0.0:0.0
MOD:Speedometer:false
@ -43,21 +43,21 @@ MOD:Hit Color:false
MOD:UHC Overlay:false
MOD:FPS Boost:false
MOD:Clear Glass:false
MOD:Crosshair:true
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:Inventory Blur:true
MOD:Coordinates:false
POS:Coordinates:0.0015625:0.002777777777777778
POS:Coordinates:0.003125:0.005555555555555556
MOD:Chunk Borders:false
MOD:Hitboxes:false
MOD:Nametags:true
MOD:Scoreboard:true
MOD:Block Overlay:false
MOD:Block Overlay:true
MOD:Particles:false
MOD:Damage Tint:false
MOD:Titles:true
@ -71,7 +71,8 @@ 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
MOD:Quickplay:false
SET:Scale:FPS:2.0
SET:Background:FPS:true
SET:Background Color:FPS:-16777216:false:127
SET:Color:FPS:-1:false:255
@ -79,7 +80,7 @@ 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:Scale:CPS:2.0
SET:Background:CPS:true
SET:Background Color:CPS:-16777216:false:127
SET:Color:CPS:-1:false:255
@ -99,39 +100,43 @@ 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:Scale:Keystrokes:2.20
SET:Font Shadow:Keystrokes:true
SET:Fancy Font:Keystrokes:false
SET:Background:Keystrokes:true
SET:CPS Mode:Keystrokes:None
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:Keybind:Perspective:56
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 3rd Person Block 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:Consume Animation:Animations:true
SET:Block-Hitting Animation:Animations:true
SET:Red Armor:Animations:true
SET:Punching During Usage:Animations:true
SET:Item Switching Animation:Animations:true
SET:Remove Health Bar Flashing:Animations:true
SET:Scale:Armor Status:3.192730665206909
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:Scale:Memory:2.0
SET:Background:Memory:true
SET:Background Color:Memory:-16777216:false:127
SET:Color:Memory:-1:false:255
@ -140,7 +145,7 @@ 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:Scale:Potion Hud:2.0
SET:Font Shadow:Potion Hud:true
SET:Fancy Font:Potion Hud:false
SET:Show Potion Name:Potion Hud:true
@ -148,7 +153,7 @@ 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:Scale:Ping:2.0
SET:Background:Ping:true
SET:Background Color:Ping:-16777216:false:127
SET:Color:Ping:-1:false:255
@ -157,27 +162,25 @@ 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:Scale:Pack Display:2.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:Scale:Clock:2.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:Scale:Speedometer:2.0
SET:Background:Speedometer:true
SET:Background Color:Speedometer:-16777216:false:127
SET:Color:Speedometer:-1:false:255
@ -185,7 +188,7 @@ 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:Scale:Reach Display:2.0
SET:Background:Reach Display:true
SET:Background Color:Reach Display:-16777216:false:127
SET:Color:Reach Display:-1:false:255
@ -193,7 +196,7 @@ 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:Scale:Day Counter:2.0
SET:Background:Day Counter:true
SET:Background Color:Day Counter:-16777216:false:127
SET:Color:Day Counter:-1:false:255
@ -201,7 +204,7 @@ 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:Scale:Server Address:2.0
SET:Background:Server Address:true
SET:Background Color:Server Address:-16777216:false:127
SET:Color:Server Address:-1:false:255
@ -215,12 +218,13 @@ 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:Keybind:Zoom:46
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:Scale:Combo Counter:2.0
SET:Background:Combo Counter:true
SET:Background Color:Combo Counter:-16777216:false:127
SET:Color:Combo Counter:-1:false:255
@ -271,7 +275,7 @@ 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:Gap:Crosshair:2.0
SET:Thickness:Crosshair:1.0
SET:Scale:Crosshair:1.0
SET:Highlight Hostile Mobs:Crosshair:false
@ -293,6 +297,7 @@ 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:Mod Menu Keybind:General:54
SET:Silent Logo Location:General:Bottom Right Corner
SET:Silent Button Sounds:General:false
SET:Menu Animations:General:true
@ -316,7 +321,7 @@ 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:Scale:Coordinates:2.0
SET:Background:Coordinates:true
SET:Background Color:Coordinates:-16777216:false:127
SET:Color:Coordinates:-1:false:255
@ -357,7 +362,7 @@ 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:Fill Color:Block Overlay:-1:false:127
SET:Show Sharpness:Particles:true
SET:Always Sharpness Particles:Particles:false
SET:Sharpness Multiplier:Particles:1.0
@ -386,7 +391,7 @@ 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:Scale:Player Counter:2.0
SET:Background:Player Counter:true
SET:Background Color:Player Counter:-16777216:false:127
SET:Color:Player Counter:-1:false:255
@ -394,7 +399,7 @@ 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:Scale:BlockInfo:2.0
SET:Block Coords:BlockInfo:true
SET:Correct Tool:BlockInfo:true
SET:Break Time:BlockInfo:true
@ -404,4 +409,161 @@ 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
SET:Open Menu:Quickplay:12
SET:Quickplay Mode&Hypixel&/lobby main:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&Hypixel&/stuck:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby arcade:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_day_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_bounty_hunters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pvp_ctw:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_creeper_attack:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_dragon_wars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_ender_spleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_farm_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_soccer:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_starwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_party_pooper:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_prop_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hole_in_the_wall:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_simon_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_santa_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_mini_walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_party_games_1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pixel_painters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_throw_out:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_dead_end:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_bad_blood:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_alien_arcadium:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby bedwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_three:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_two_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_castle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby blitz:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby buildbattle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_pro:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_guess_the_build:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play vampirez:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_solo:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_teams:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play paintball:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_1v1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tkr:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby cops:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby duels:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_blitz_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bow_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bowspleef_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_boxing_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_2v2v2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_capture_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_classic_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_combo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_potion_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_parkour_eight:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sumo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_meetup:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby murder:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_assassins:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_infection:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_double_up:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby skywars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_hunters_vs_beasts:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_2v2_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_friends_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_1v1_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby tnt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntrun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_pvprun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_bowspleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntag:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby warlords:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_ctf_mini:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_domination:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_team_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby woolwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play wool_wool_wars_two_four:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BLOCK_PARTY:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DROPPER:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play MURDERMYSTERY_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_SOLO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_TEAM:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_4v4v4v4:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_THE_BRIDGE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_BOXING:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_COMBO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_NODEBUFF:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_OP:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_PEARL_FIGHT:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_STICK_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_SUMO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_UHC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_SOLO_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_TEAM_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_RANKED:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_RUN:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_TAG:Quickplay:-1
ATC:/ce fushka:40

View File

@ -1,26 +1,26 @@
MOD:FPS:true
POS:FPS:0.90625:0.9555555555555556
POS:FPS:0.9296875:0.9694444444444444
MOD:CPS:false
POS:CPS:0.0:0.0
POS:CPS:0.93125:0.17777777777777778
MOD:Toggle Sprint:false
POS:Toggle Sprint:0.0:0.0
POS:Toggle Sprint:0.509375:0.9027777777777778
MOD:Keystrokes:false
POS:Keystrokes:0.0:0.0
POS:Keystrokes:0.93125:0.002777777777777778
MOD:Perspective:false
MOD:Animations:true
MOD:Armor Status:true
POS:Armor Status:0.0:0.38055555555555554
POS:Armor Status:0.003125:0.40555555555555556
MOD:Memory:false
POS:Memory:0.0:0.0
MOD:Auto GG:false
MOD:Potion Hud:true
POS:Potion Hud:0.8578125:0.3
POS:Potion Hud:0.9046875:0.39166666666666666
MOD:Ping:false
POS:Ping:0.0:0.0
POS:Ping:0.93125:0.20555555555555555
MOD:Item Physics:false
MOD:Pack Display:false
POS:Pack Display:0.0:0.0
MOD:FullBright:false
MOD:FullBright:true
MOD:Clock:false
POS:Clock:0.0:0.0
MOD:Speedometer:false
@ -50,14 +50,14 @@ 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:Inventory Blur:true
MOD:Coordinates:false
POS:Coordinates:0.003125:0.005555555555555556
MOD:Chunk Borders:false
MOD:Hitboxes:false
MOD:Nametags:true
MOD:Scoreboard:true
MOD:Block Overlay:false
MOD:Block Overlay:true
MOD:Particles:false
MOD:Damage Tint:false
MOD:Titles:true
@ -71,7 +71,8 @@ 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
MOD:Quickplay:false
SET:Scale:FPS:2.0
SET:Background:FPS:true
SET:Background Color:FPS:-16777216:false:127
SET:Color:FPS:-1:false:255
@ -79,7 +80,7 @@ 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:Scale:CPS:2.0
SET:Background:CPS:true
SET:Background Color:CPS:-16777216:false:127
SET:Color:CPS:-1:false:255
@ -99,39 +100,43 @@ 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:Scale:Keystrokes:2.20
SET:Font Shadow:Keystrokes:true
SET:Fancy Font:Keystrokes:false
SET:Background:Keystrokes:true
SET:CPS Mode:Keystrokes:None
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:Keybind:Perspective:56
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 3rd Person Block 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:Consume Animation:Animations:true
SET:Block-Hitting Animation:Animations:true
SET:Red Armor:Animations:true
SET:Punching During Usage:Animations:true
SET:Item Switching Animation:Animations:true
SET:Remove Health Bar Flashing:Animations:true
SET:Scale:Armor Status:3.192730665206909
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:Scale:Memory:2.0
SET:Background:Memory:true
SET:Background Color:Memory:-16777216:false:127
SET:Color:Memory:-1:false:255
@ -140,7 +145,7 @@ 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:Scale:Potion Hud:2.0
SET:Font Shadow:Potion Hud:true
SET:Fancy Font:Potion Hud:false
SET:Show Potion Name:Potion Hud:true
@ -148,7 +153,7 @@ 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:Scale:Ping:2.0
SET:Background:Ping:true
SET:Background Color:Ping:-16777216:false:127
SET:Color:Ping:-1:false:255
@ -157,27 +162,25 @@ 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:Scale:Pack Display:2.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:Scale:Clock:2.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:Scale:Speedometer:2.0
SET:Background:Speedometer:true
SET:Background Color:Speedometer:-16777216:false:127
SET:Color:Speedometer:-1:false:255
@ -185,7 +188,7 @@ 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:Scale:Reach Display:2.0
SET:Background:Reach Display:true
SET:Background Color:Reach Display:-16777216:false:127
SET:Color:Reach Display:-1:false:255
@ -193,7 +196,7 @@ 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:Scale:Day Counter:2.0
SET:Background:Day Counter:true
SET:Background Color:Day Counter:-16777216:false:127
SET:Color:Day Counter:-1:false:255
@ -201,7 +204,7 @@ 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:Scale:Server Address:2.0
SET:Background:Server Address:true
SET:Background Color:Server Address:-16777216:false:127
SET:Color:Server Address:-1:false:255
@ -215,12 +218,13 @@ 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:Keybind:Zoom:46
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:Scale:Combo Counter:2.0
SET:Background:Combo Counter:true
SET:Background Color:Combo Counter:-16777216:false:127
SET:Color:Combo Counter:-1:false:255
@ -293,6 +297,7 @@ 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:Mod Menu Keybind:General:54
SET:Silent Logo Location:General:Bottom Right Corner
SET:Silent Button Sounds:General:false
SET:Menu Animations:General:true
@ -316,7 +321,7 @@ 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:Scale:Coordinates:2.0
SET:Background:Coordinates:true
SET:Background Color:Coordinates:-16777216:false:127
SET:Color:Coordinates:-1:false:255
@ -356,7 +361,7 @@ 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:Block Overlay:true
SET:Fill Color:Block Overlay:-1:false:127
SET:Show Sharpness:Particles:true
SET:Always Sharpness Particles:Particles:false
@ -386,7 +391,7 @@ 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:Scale:Player Counter:2.0
SET:Background:Player Counter:true
SET:Background Color:Player Counter:-16777216:false:127
SET:Color:Player Counter:-1:false:255
@ -394,7 +399,7 @@ 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:Scale:BlockInfo:2.0
SET:Block Coords:BlockInfo:true
SET:Correct Tool:BlockInfo:true
SET:Break Time:BlockInfo:true
@ -404,4 +409,161 @@ 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
SET:Open Menu:Quickplay:12
SET:Quickplay Mode&Hypixel&/lobby main:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&Hypixel&/stuck:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby arcade:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_day_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_bounty_hunters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pvp_ctw:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_creeper_attack:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_dragon_wars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_ender_spleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_farm_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_soccer:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_starwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_party_pooper:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hide_and_seek_prop_hunt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_hole_in_the_wall:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_simon_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_santa_says:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_mini_walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_party_games_1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_pixel_painters:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_throw_out:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_dead_end:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_bad_blood:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arcade_zombies_alien_arcadium:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby bedwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_one:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_three:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_two_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_ultimate:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_castle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight_two_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_voidless:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_armed:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_eight two_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play bedwars_four_four_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby blitz:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play blitz_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby buildbattle:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_solo_pro:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play build_battle_guess_the_build:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play vampirez:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_solo:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play quake_teams:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play paintball:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_1v1:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play walls:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tkr:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby cops:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_normal_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mcgo_deathmatch_party:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby duels:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_blitz_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bow_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bowspleef_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_boxing_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_2v2v2v2:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_bridge_four:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_capture_threes:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_classic_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_combo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_mw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_potion_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_op_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_parkour_eight:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sw_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_sumo_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_duel:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play arena_4v4:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play duels_uhc_meetup:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby murder:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_classic:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_assassins:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_infection:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play murder_double_up:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby skywars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play mega_doubles:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_tnt_madness:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_rush:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_slime:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play teams_insane_lucky:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play solo_insane_hunters_vs_beasts:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_solo_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_2v2_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_teams_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_friends_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play super_smash_1v1_normal:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby tnt:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntrun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_pvprun:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_bowspleef:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_tntag:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play tnt_capture:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby warlords:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_ctf_mini:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_domination:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play warlords_team_deathmatch:Quickplay:-1
SET:Quickplay Mode&Hypixel&/lobby woolwars:Quickplay:-1
SET:Quickplay Mode&Hypixel&/play wool_wool_wars_two_four:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/lobby:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BLOCK_PARTY:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DROPPER:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play MURDERMYSTERY_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_SOLO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_TEAM:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_3v3v3v3:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_4v4v4v4:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play BEDWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_THE_BRIDGE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_BOXING:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_CLASSIC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_COMBO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_NODEBUFF:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_OP:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_PEARL_FIGHT:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_STICK_DUELS:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_SUMO:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play DUEL_UHC:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_SOLO_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_TEAM_INSANE:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play SKYWARS_RANKED:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_RUN:Quickplay:-1
SET:Quickplay Mode&RuHypixel&/play TNT_TAG:Quickplay:-1
ATC:/ce fushka:40

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 1.9 MiB