Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Timer+ for 2b2t
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekiplay committed Feb 21, 2024
1 parent be01bf8 commit 6af3234
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ dependencies {
// Litematica
modImplementation "curse.maven:litematica-${project.litematica_projectid}:${project.litematica_fileid}"
modImplementation "curse.maven:litematica-${project.malilib_projectid}:${project.malilib_fileid}"
// modImplementation "fi.dy.masa.malilib:malilib-fabric-${project.minecraft_version}:${project.malilib_version}"
modImplementation("red.jackf:whereisit:${project.where_is_it_version}")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ public enum TimerModes {
NCP,
Intave,
Vulcan,
Grim,
OldFag,
rem6g6s,
Custom
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ private void onTimerModeChanged(TimerModes mode) {
case Vulcan -> {
currentMode = new Vulcan();
}
case Grim -> {
currentMode = new NCP();
workingDelay = 14;
rechargeDelay = 16;
timerMultiplier = 2;
timerMultiplierOnRecharge = Timer.OFF;
}
case OldFag -> {
currentMode = new NCP();
workingDelay = 18;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
package nekiplay.meteorplus.mixin.whereisit;

import com.mojang.blaze3d.platform.GlStateManager;
import com.mojang.blaze3d.systems.RenderSystem;
import meteordevelopment.meteorclient.systems.modules.Modules;
import meteordevelopment.meteorclient.utils.render.NametagUtils;
import meteordevelopment.meteorclient.utils.render.color.Color;
import meteordevelopment.meteorclient.utils.render.color.SettingColor;
import nekiplay.meteorplus.features.modules.integrations.WhereIsIt;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
Expand All @@ -16,7 +13,6 @@
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.Text;
import net.minecraft.util.math.Vec3d;
import org.joml.Vector3d;
import org.lwjgl.opengl.GL11;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
Expand Down

0 comments on commit 6af3234

Please sign in to comment.