add some new modules, kill off alt manager, clean up other code

This commit is contained in:
kawaiizenbo 2023-10-12 10:34:17 -07:00
parent 4b1e0b4fa9
commit 3ad5af7ea7
13 changed files with 120 additions and 95 deletions

View file

@ -0,0 +1,27 @@
package me.kawaiizenbo.moonlight.module.modules;
import me.kawaiizenbo.moonlight.module.Category;
import me.kawaiizenbo.moonlight.module.Module;
import me.kawaiizenbo.moonlight.module.settings.DoubleSetting;
import me.kawaiizenbo.moonlight.util.Timer;
public class AutoJump extends Module
{
public DoubleSetting delay = new DoubleSetting("Delay (Seconds)", 1, 0.1, 10, 1);
private Timer timer = new Timer();
public AutoJump()
{
super("Auto Jump", "Automatically jumps on a timer.", Category.MOVEMENT);
settings.add(delay);
}
@Override
public void tick()
{
if (timer.hasTimeElapsed((long)delay.value * 1000, true) && mc.player.isOnGround() && mc.player.hasVehicle() == false)
{
mc.player.jump();
}
}
}