Merge branch 'features-master' of github.com:S-B99/KAMI into features-master

This commit is contained in:
Bella 2019-11-25 09:13:30 -05:00
commit e9cde0ec67
1 changed files with 6 additions and 16 deletions

View File

@ -3,38 +3,28 @@ package me.zeroeightsix.kami.module.modules.misc;
import me.zeroeightsix.kami.module.Module;
import me.zeroeightsix.kami.module.ModuleManager;
import me.zeroeightsix.kami.command.Command;
import me.zeroeightsix.kami.setting.Setting;
import me.zeroeightsix.kami.setting.Settings;
import net.minecraft.client.Minecraft;
import net.minecraft.network.play.client.CPacketChatMessage;
/**
* Created by d1gress/Qther on 24/11/2019.
* Updated by @S-B99 on 24/11/2019
*/
@Module.Info(name = "AutoQMain", description = "Automatically does \"/queue main\" every 7.1 minutes.", category = Module.Category.MISC)
public class AutoQMain extends Module {
private Setting<Boolean> debug = register(Settings.b("Debug", true));
private static long startTime = 0;
@Override
public void onUpdate() {
if (mc.player == null) {
return;
}
if (Minecraft.getMinecraft().getCurrentServerData() == null || (Minecraft.getMinecraft().getCurrentServerData() !=null && !Minecraft.getMinecraft().getCurrentServerData().serverIP.equalsIgnoreCase("2b2t.org"))) {
Command.sendChatMessage("Not connected to 2b2t.org");
Command.sendChatMessage("Not on 2b2t");
startTime = 0;
ModuleManager.getModuleByName("AutoQMain").disable();
}
else {
if (startTime == 0) startTime = System.currentTimeMillis();
if (startTime + 426000 <= System.currentTimeMillis()) { //426000
if (debug.getValue()) {
Command.sendChatMessage("&7Run &b/queue main&7 at " + System.currentTimeMillis());
}
} else {
if (startTime == 0 || startTime <= System.currentTimeMillis() - 427000) startTime = System.currentTimeMillis();
if (startTime + 426000 <= System.currentTimeMillis()) {
Minecraft.getMinecraft().playerController.connection.sendPacket(new CPacketChatMessage("/queue main"));
Command.sendChatMessage("Sent \"/queue main\" at " + System.currentTimeMillis());
startTime = System.currentTimeMillis();
}
}