Skip to content

Commit

Permalink
giant clean + remove useless/broken stuff, will re-add at later data,…
Browse files Browse the repository at this point in the history
… + 1.21
  • Loading branch information
Nxyi committed Aug 6, 2024
1 parent 285ad7b commit b5bdb0d
Show file tree
Hide file tree
Showing 53 changed files with 116 additions and 1,650 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.1-SNAPSHOT'
id 'fabric-loom' version '1.7-SNAPSHOT'
}

sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx2G

# Fabric Properties (https://fabricmc.net/versions.html)
minecraft_version=1.20.4
yarn_version=1.20.4+build.3
loader_version=0.15.2
minecraft_version=1.21
yarn_version=1.21+build.2
loader_version=0.15.11

# Mod Properties
mod_version=1.0.6
Expand All @@ -13,4 +13,4 @@ archives_base_name=zewo2
# Dependencies

# Meteor (https://maven.meteordev.org/)
meteor_version=0.5.6
meteor_version=0.5.8
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
12 changes: 0 additions & 12 deletions src/main/java/com/dark/zewo2/Addon.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public void onInitialize() {
Modules.get().add(new Magnet());
Modules.get().add(new NoSwing());
Modules.get().add(new chatfilterbypass());
Modules.get().add(new Airstrike());
Modules.get().add(new Groupmessage());
Modules.get().add(new RainbowArmor());
Modules.get().add(new PenisESP());
Expand All @@ -52,32 +51,21 @@ public void onInitialize() {
Modules.get().add(new AutoHorn());
Modules.get().add(new AntiSpawnpoint());
Modules.get().add(new phase());
Modules.get().add(new Bookchat());
Modules.get().add(new StrongholdFinder());
Modules.get().add(new Fling());
Modules.get().add(new PermJukebox());
Modules.get().add(new AntiNbtBypasser());
Modules.get().add(new SignGriefer());
Modules.get().add(new Boykisser());
Modules.get().add(new PingSpoof());
Modules.get().add(new ForceField());
Modules.get().add(new SitModule());
Modules.get().add(new AutoWordReact());
Modules.get().add(new StorageVoider());

// Commands
Commands.add(new CheckCMD());
Commands.add(new ClearInventoryCommand());
Commands.add(new CrashItemCommand());
Commands.add(new CreativeBanCommand());
Commands.add(new CreativeKickAllCommand());
Commands.add(new DesyncCommand());
Commands.add(new DisableVehicleGrav());
Commands.add(new HologramCommand());
Commands.add(new ImageBookCommand());
Commands.add(new ImageLoreCommand());
Commands.add(new TrashCommand());
Commands.add(new ReloadCapes());
Commands.add(new SpamCommand());
Commands.add(new CrackedOpSpamCommand());
Commands.add(new MinefortJoin());
Expand Down
54 changes: 0 additions & 54 deletions src/main/java/com/dark/zewo2/Utils/Binary.java

This file was deleted.

11 changes: 0 additions & 11 deletions src/main/java/com/dark/zewo2/Utils/JinxUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public static void sleep(long ms) {
} catch (Exception ignored) {
}
}
public static final List<String> ANTICHEAT_LIST = Arrays.asList("grimac", "nocheatplus", "negativity", "warden", "horizon", "illegalstack", "coreprotect", "exploitsx", "vulcan", "abc", "spartan", "kauri", "anticheatreloaded", "witherac", "godseye", "matrix", "wraith");
public static void sendSignedMessage(String message) {
if (message.startsWith("/")) mc.player.sendMessage(Text.of(message.substring(1)));
else mc.player.networkHandler.sendChatMessage(message);
Expand Down Expand Up @@ -71,16 +70,6 @@ public static Vec3d pickRandomPos() {
return new Vec3d(x, y, z);
}

public static ItemStack generateItemWithNbt(String nbt, Item item) {
try {
ItemStack stack = new ItemStack(item);
stack.setNbt(StringNbtReader.parse(nbt));
return stack;
} catch (Exception ignored) {
return new ItemStack(item);
}
}

public static Vec2f getPitchYawFromOtherEntity(Vec3d eyePos, Vec3d targetV3) {
double vec = 57.2957763671875;
Vec3d target = targetV3.subtract(eyePos);
Expand Down
15 changes: 0 additions & 15 deletions src/main/java/com/dark/zewo2/Utils/NetworkHandler.java

This file was deleted.

162 changes: 0 additions & 162 deletions src/main/java/com/dark/zewo2/Utils/StringMapSetting.java

This file was deleted.

10 changes: 0 additions & 10 deletions src/main/java/com/dark/zewo2/Utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,6 @@ public static boolean isABFree(Vec3d a, Vec3d b) {
return raycast.getType() == HitResult.Type.MISS;
}

public static ItemStack generateItemStackWithMeta(String nbt, Item item) {
try {
ItemStack stack = new ItemStack(item);
stack.setNbt(StringNbtReader.parse(nbt));
return stack;
} catch (Exception ignored) {
return new ItemStack(item);
}
}

public static Vec3d getRotationVector(float pitch, float yaw) {
float f = pitch * 0.017453292F;
float g = -yaw * 0.017453292F;
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/com/dark/zewo2/commands/CheckCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import net.minecraft.text.TranslatableTextContent;

public class CheckCMD extends Command {
// crappy hack to make it compile
private final MinecraftClient mc = MinecraftClient.getInstance();

private static final SimpleCommandExceptionType ALWAYS_CHECKING = new SimpleCommandExceptionType(Text.of("Already executing Command Check!"));

private int checking = 0;
Expand Down
Loading

0 comments on commit b5bdb0d

Please sign in to comment.