Skip to content

Instantly share code, notes, and snippets.

View Luzisrepo's full-sized avatar
:octocat:
Sleepeh

._rayzz / luzisrepo Luzisrepo

:octocat:
Sleepeh
View GitHub Profile
@Luzisrepo
Luzisrepo / legitscaff.java
Created September 24, 2025 17:33
Legit Scaffold
// Constants and default values
private static final double HW = 0.3;
private static final double[][] CORNERS = {{ -HW, -HW }, { HW, -HW }, { -HW, HW }, { HW, HW }};
private boolean sneakingFromScript = false;
private boolean placed = false;
private boolean forceRelease = false;
private int sneakJumpDelayTicks = -1;
private int sneakJumpStartTick = -1;
private int unsneakDelayTicks = -1;
private int unsneakStartTick = -1;
@Luzisrepo
Luzisrepo / jumpres.java
Created September 24, 2025 17:32
Auto Jump Reset for minecraft
// State variables
private boolean setJump = false;
private boolean ignoreNext = false;
private boolean aiming = false;
private int lastHurtTime = -1;
private double lastFallDistance = 0.0;
void onLoad() {
// Register configuration options
modules.registerSlider("Chance", "%", 100, 0, 100, 1);