Search in sources :

Example 1 with HUD

use of meteordevelopment.meteorclient.systems.hud.HUD in project meteor-rejects by AntiCope.

the class MeteorRejectsAddon method onInitialize.

@Override
public void onInitialize() {
    LOG.info("Initializing Meteor Rejects Addon");
    MeteorClient.EVENT_BUS.registerLambdaFactory("anticope.rejects", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    RejectsUtils.init();
    GiveUtils.init();
    // Modules
    Modules modules = Modules.get();
    modules.add(new AntiBot());
    modules.add(new AntiSpawnpoint());
    modules.add(new AntiVanish());
    modules.add(new Auto32K());
    modules.add(new AutoBedTrap());
    modules.add(new AutoCraft());
    modules.add(new AutoExtinguish());
    modules.add(new AutoPot());
    modules.add(new AutoTNT());
    modules.add(new AutoWither());
    modules.add(new BoatGlitch());
    modules.add(new BlockIn());
    modules.add(new BoatPhase());
    modules.add(new Boost());
    modules.add(new ChatBot());
    modules.add(new ColorSigns());
    modules.add(new Confuse());
    modules.add(new CoordLogger());
    modules.add(new CustomPackets());
    modules.add(new GhostMode());
    modules.add(new InteractionMenu());
    modules.add(new Lavacast());
    modules.add(new NewChunks());
    modules.add(new ObsidianFarm());
    modules.add(new OreSim());
    modules.add(new PacketFly());
    modules.add(new Painter());
    modules.add(new Prone());
    modules.add(new Rendering());
    modules.add(new SkeletonESP());
    modules.add(new SoundLocator());
    // Module modifications
    NoRenderModifier.init();
    // Commands
    Commands commands = Commands.get();
    commands.add(new CenterCommand());
    commands.add(new ClearChatCommand());
    commands.add(new GhostCommand());
    commands.add(new GiveCommand());
    commands.add(new SaveSkinCommand());
    commands.add(new SeedCommand());
    commands.add(new HeadsCommand());
    commands.add(new KickCommand());
    // commands.add(new LocateCommand());   I wish it was that simple -_-
    commands.add(new ServerCommand());
    commands.add(new PanicCommand());
    commands.add(new SetBlockCommand());
    commands.add(new SetVelocityCommand());
    commands.add(new TeleportCommand());
    commands.add(new TerrainExport());
    // HUD
    HUD hud = Systems.get(HUD.class);
    hud.elements.add(new BaritoneHud(hud));
    // Themes
    GuiThemes.add(new MeteorRoundedGuiTheme());
}
Also used : Modules(meteordevelopment.meteorclient.systems.modules.Modules) MethodHandles(java.lang.invoke.MethodHandles) MeteorRoundedGuiTheme(anticope.rejects.gui.themes.rounded.MeteorRoundedGuiTheme) HUD(meteordevelopment.meteorclient.systems.hud.HUD) Commands(meteordevelopment.meteorclient.systems.commands.Commands)

Example 2 with HUD

use of meteordevelopment.meteorclient.systems.hud.HUD in project tanuki by AntiCope.

the class Tanuki method onInitialize.

@Override
public void onInitialize() {
    LOG.info("Initializing Tanuki");
    // Required when using @EventHandler
    MeteorClient.EVENT_BUS.registerLambdaFactory("anticope.tanuki", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    Modules modules = Modules.get();
    modules.add(new AntiCrystal());
    modules.add(new AntiCrystalPhase());
    modules.add(new AutoGriffer());
    modules.add(new BedrockWalk());
    modules.add(new Confetti());
    modules.add(new FuckedDetector());
    modules.add(new PauseOnUnloaded());
    modules.add(new TanukiPacketFly());
    HUD hud = Systems.get(HUD.class);
    hud.elements.add(new ProfileHud(hud));
}
Also used : MethodHandles(java.lang.invoke.MethodHandles) Modules(meteordevelopment.meteorclient.systems.modules.Modules) HUD(meteordevelopment.meteorclient.systems.hud.HUD)

Example 3 with HUD

use of meteordevelopment.meteorclient.systems.hud.HUD in project meteor-e621-integration by AntiCope.

the class TemplateAddon method onInitialize.

@Override
public void onInitialize() {
    LOG.info("Initializing E621");
    MeteorClient.EVENT_BUS.registerLambdaFactory("anticope.esixtwoone", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    // HUD
    HUD hud = Systems.get(HUD.class);
    hud.elements.add(new ImageHUD(hud));
}
Also used : MethodHandles(java.lang.invoke.MethodHandles) HUD(meteordevelopment.meteorclient.systems.hud.HUD)

Example 4 with HUD

use of meteordevelopment.meteorclient.systems.hud.HUD in project vector-addon by cally72jhb.

the class Systems method postInit.

public static void postInit() {
    HUD hud = meteordevelopment.meteorclient.systems.Systems.get(HUD.class);
    hud.topCenter.add(new CustomChatHud(hud));
    hud.topLeft.add(new StatsHud(hud));
    hud.topLeft.add(new MemoryHud(hud));
    hud.topLeft.add(new PacketHud(hud));
// hud.topLeft.add(new RadarHud(hud));
}
Also used : HUD(meteordevelopment.meteorclient.systems.hud.HUD) PacketHud(cally72jhb.addon.system.hud.PacketHud) StatsHud(cally72jhb.addon.system.hud.StatsHud) MemoryHud(cally72jhb.addon.system.hud.MemoryHud) CustomChatHud(cally72jhb.addon.system.hud.CustomChatHud)

Example 5 with HUD

use of meteordevelopment.meteorclient.systems.hud.HUD in project banana-for-everyone by Bennooo.

the class BananaPlus method onInitialize.

@Override
public void onInitialize() {
    LOG.info("Initializing Banana+ Addon");
    // Required when using @EventHandler
    MeteorClient.EVENT_BUS.registerLambdaFactory("bananaplus.modules", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    MeteorClient.EVENT_BUS.registerLambdaFactory("bananaplus.utils", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    // HUD
    HUD hud = Systems.get(HUD.class);
    hud.elements.add(new CrystalsPs(hud));
    hud.elements.add(new BananaHud(hud));
    hud.elements.add(new XpHud(hud));
    hud.elements.add(new MonkeBombsHud(hud));
    hud.elements.add(new CoordinatesHud(hud));
    hud.elements.add(new ObbyHud(hud));
    hud.elements.add(new EchestHud(hud));
    hud.elements.add(new HudLogo(hud));
    hud.elements.add(new Deaths(hud));
    hud.elements.add(new Kills(hud));
    hud.elements.add(new KillStreak(hud));
    hud.elements.add(new HighScore(hud));
    hud.elements.add(new KD(hud));
    hud.elements.add(new BindsHud(hud));
    // Combat
    Modules.get().add(new AutoAuto());
    Modules.get().add(new AutoCityPlus());
    Modules.get().add(new AutoTrapPlus());
    Modules.get().add(new AutoRepair());
    Modules.get().add(new AnchorPlus());
    Modules.get().add(new AntiTrap());
    Modules.get().add(new BurrowESP());
    Modules.get().add(new BurrowMiner());
    Modules.get().add(new AntiSurround());
    Modules.get().add(new BananaBomber());
    Modules.get().add(new CevBreaker());
    Modules.get().add(new CityESPPlus());
    Modules.get().add(new HoleESPPlus());
    Modules.get().add(new MonkeBurrow());
    Modules.get().add(new MonkeDetector());
    Modules.get().add(new Monkhand());
    Modules.get().add(new MonkeSleeper());
    Modules.get().add(new MonkeTotem());
    Modules.get().add(new PostTickKA());
    Modules.get().add(new QuiverPlus());
    Modules.get().add(new SelfTrapPlus());
    Modules.get().add(new SmartHoleFill());
    Modules.get().add(new StepPlus());
    Modules.get().add(new StrafePlus());
    Modules.get().add(new SurroundPlus());
    Modules.get().add(new ReverseStepTimer());
    Modules.get().add(new TickShift());
    // Misc
    Modules.get().add(new AfkLog());
    Modules.get().add(new AntiGhostBlock());
    Modules.get().add(new AntiInvisBlock());
    Modules.get().add(new AntiNarrator());
    Modules.get().add(new AutoFollow());
    Modules.get().add(new AutoSex());
    Modules.get().add(new BDiscordPresence());
    Modules.get().add(new BindClickExtra());
    Modules.get().add(new BPrefix());
    Modules.get().add(new BindClickFriend());
    Modules.get().add(new InstaMineBypass());
    Modules.get().add(new LightningDeaths());
    Modules.get().add(new OneClickEat());
    Modules.get().add(new Platform());
    Modules.get().add(new SkinBlinker());
    Modules.get().add(new TimeAnimator());
    Modules.get().add(new TPSSync());
    Modules.get().add(new Twerk());
    Modules.get().add(new WebNoSlow());
    // Utils
    BPlusDamageUtils.init();
    StatsUtils.init();
}
Also used : MethodHandles(java.lang.invoke.MethodHandles) HUD(meteordevelopment.meteorclient.systems.hud.HUD)

Aggregations

HUD (meteordevelopment.meteorclient.systems.hud.HUD)10 MethodHandles (java.lang.invoke.MethodHandles)7 Modules (meteordevelopment.meteorclient.systems.modules.Modules)5 Commands (meteordevelopment.meteorclient.systems.commands.Commands)3 MeteorRoundedGuiTheme (anticope.rejects.gui.themes.rounded.MeteorRoundedGuiTheme)1 CustomChatHud (cally72jhb.addon.system.hud.CustomChatHud)1 MemoryHud (cally72jhb.addon.system.hud.MemoryHud)1 PacketHud (cally72jhb.addon.system.hud.PacketHud)1 StatsHud (cally72jhb.addon.system.hud.StatsHud)1 AddWaypoint (com.kkllffaa.meteorutils.commands.AddWaypoint)1 Disconnect (com.kkllffaa.meteorutils.commands.Disconnect)1 EchestPreview (com.kkllffaa.meteorutils.commands.EchestPreview)1 BaritoneProcess (com.kkllffaa.meteorutils.hud.BaritoneProcess)1 ElytraDurability (com.kkllffaa.meteorutils.hud.ElytraDurability)1 OADupeDisplay (com.kkllffaa.meteorutils.hud.OADupeDisplay)1 WaypointsTab (com.kkllffaa.meteorutils.tabs.WaypointsTab)1 SINGLE_SUCCESS (com.mojang.brigadier.Command.SINGLE_SUCCESS)1 LiteralArgumentBuilder (com.mojang.brigadier.builder.LiteralArgumentBuilder)1 Welcome (me.ghosttypes.orion.modules.hud.misc.Welcome)1 GuiThemes (meteordevelopment.meteorclient.gui.GuiThemes)1