Updated Anti X-Ray Bypass settings

This commit is contained in:
TheSainEyereg
2022-03-04 15:24:33 +03:00
parent 7685106e04
commit 69e0163c29
3 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[*]
charset = utf-8
indent_style = space
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 4

View File

@@ -1,11 +1,12 @@
package olejka.meteorplus;
//import olejka.meteorplus.commands.*;
import olejka.meteorplus.modules.*;
import meteordevelopment.meteorclient.MeteorClient;
import meteordevelopment.meteorclient.addons.MeteorAddon;
//import meteordevelopment.meteorclient.systems.commands.Commands;
import meteordevelopment.meteorclient.systems.modules.Category;
import meteordevelopment.meteorclient.systems.modules.Modules;
//import meteordevelopment.meteorclient.systems.commands.Commands;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@@ -25,6 +26,9 @@ public class MeteorPlus extends MeteorAddon {
//Modules
Modules.get().add(new AntiXRayBypass());
//Commands
//Commands.get().add();
}
@Override

View File

@@ -26,6 +26,8 @@ public class AntiXRayBypass extends Module {
.description("Set the scan radius")
.defaultValue(10)
.min(2)
.max(30)
.sliderMin(2)
.sliderMax(30)
.build()
);
@@ -35,6 +37,8 @@ public class AntiXRayBypass extends Module {
.description("Delay before scan.")
.defaultValue(5)
.min(5)
.max(25)
.sliderMin(5)
.sliderMax(25)
.build()
);