Skip to content

Commit

Permalink
finished 1.21 update
Browse files Browse the repository at this point in the history
  • Loading branch information
stefexec committed Aug 3, 2024
1 parent b075d82 commit e07e834
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@
# Features
## Modules
- `Bedrock ESP` - Renders illegally placed bedrock blocks through walls.
- `AutoItemMove` - Automatically moves items from the player's inventory into opened containers.
- `BlastGuard` - Uses different methods to teleport away from explosions.
- `BoomESP` - Renders a box around about-to-explode things.
- `DubCounter` - Count the amount of double chests in render distance.
- `NoChestRender` - Disables rendering of chests completely to improve performance.
- `Gurkfly` - Fly like in creative mode. Only works on servers without anti-cheat.
- `Gurkwalk` - Bypasses the anti-human plugin on the LO server.
- `LO Bypasses` - Bypasses the multiple nag/demo-screens on the LO Server.
- `NoChestRender` - Disables rendering of chests completely to improve performance.
- `NoCollision` - Removes Client-Side collision with blocks and the world border.
- `NoWorldBorder` - Disables the world border client side allowing you to walk through.
- `Packet Logger` - A very basic packet logger.
- `WorldGuard Bypass` - Easily move inside WorldGuard protected areas. Now with FlyKick Bypass!
- `WorldGuardBypass` - Easily move inside WorldGuard protected areas. Now with FlyKick Bypass!

## Commands
- `CamClip` - Clip to the y coordinate your freecam is pointing at.
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ dependencies {
modImplementation "meteordevelopment:meteor-client:${project.meteor_version}"
}

loom {
accessWidenerPath = file("src/main/resources/gurkensgadgetry.accesswidener")
}

processResources {
filesMatching("fabric.mod.json") {
expand "version": project.version, "mc_version": project.minecraft_version
}
}

loom {
accessWidenerPath = file("src/main/resources/gurkensgadgetry.accesswidener")
}

tasks.withType(JavaCompile).configureEach {
it.options.encoding("UTF-8")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fapi_version=0.100.3+1.21
# Mod Properties
mod_version=1.4.0
maven_group=de.gurkenwerfer
archives_base_name=gurkensgadgetry
archives_base_name=gurkens-gadgetry

# Dependencies

Expand Down
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.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import de.gurkenwerfer.gurkensgadgetry.GurkensGadgetry;
import meteordevelopment.meteorclient.systems.modules.Module;
import net.minecraft.client.MinecraftClient;

public class NoWorldBorder extends Module {
public NoWorldBorder() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public class WorldGuardBypass extends Module{

public WorldGuardBypass () {
super(GurkensGadgetry.CATEGORY, "WGBypass", "Bypasses WorldGuards region protection.");
super(GurkensGadgetry.CATEGORY, "WorldGuardBypass", "Bypasses WorldGuards region protection.");
}

public SettingGroup sgGeneral = settings.getDefaultGroup();
Expand Down

0 comments on commit e07e834

Please sign in to comment.