Search in sources :

Example 1 with EchestPreview

use of com.kkllffaa.meteorutils.commands.EchestPreview in project meteor-utils by kkllffaa.

the class Addon method onInitialize.

@Override
public void onInitialize() {
    LOG.info("initializing meteor utils addon");
    MeteorClient.EVENT_BUS.registerLambdaFactory("com.kkllffaa.meteorutils", (lookupInMethod, klass) -> (MethodHandles.Lookup) lookupInMethod.invoke(null, klass, MethodHandles.lookup()));
    // Commands
    Commands.get().add(new EchestPreview());
    Commands.get().add(new AddWaypoint());
    Commands.get().add(new Disconnect());
    // Commands.get().add(new Test());
    // Modules
    Modules.get().add(new ThirdHand());
    Modules.get().add(new NoPortalHitbox());
    Modules.get().add(new OpenAnarchyAutoDupe());
    Modules.get().add(new AutoFarm());
    Modules.get().add(new BetterBookBot());
    Modules.get().add(new NoPauseOnLostFocus());
    Modules.get().add(new AdvencedTooltips());
    Modules.get().add(new EchestSave());
    Modules.get().add(new ShulkerDupe());
    // Modules.get().add(new CustomTitleScreen());
    // HUD
    HUD hud = Systems.get(HUD.class);
    hud.elements.add(new BaritoneProcess(hud));
    hud.elements.add(new OADupeDisplay(hud));
    hud.elements.add(new ElytraDurability(hud));
    // Tabs
    Tabs.add(new WaypointsTab());
// TitleScreenShaderRenderer.init();
}
Also used : EchestPreview(com.kkllffaa.meteorutils.commands.EchestPreview) ElytraDurability(com.kkllffaa.meteorutils.hud.ElytraDurability) BaritoneProcess(com.kkllffaa.meteorutils.hud.BaritoneProcess) WaypointsTab(com.kkllffaa.meteorutils.tabs.WaypointsTab) MethodHandles(java.lang.invoke.MethodHandles) Disconnect(com.kkllffaa.meteorutils.commands.Disconnect) OADupeDisplay(com.kkllffaa.meteorutils.hud.OADupeDisplay) HUD(meteordevelopment.meteorclient.systems.hud.HUD) AddWaypoint(com.kkllffaa.meteorutils.commands.AddWaypoint)

Aggregations

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 MethodHandles (java.lang.invoke.MethodHandles)1 HUD (meteordevelopment.meteorclient.systems.hud.HUD)1