aboutsummaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorEmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com>2022-06-29 22:25:02 +0800
committerGitHub <noreply@github.com>2022-06-29 22:25:02 +0800
commit5832cbc5f3255f3d2ee1c83c30c1b6193d51a3e3 (patch)
treeb7709bd89fbba8999e0d7513f7842ed8ac7e7c9b /features
parentfda166053d056062839b860041e7eadcd34aa273 (diff)
downloadSoopyV2-5832cbc5f3255f3d2ee1c83c30c1b6193d51a3e3.tar.gz
SoopyV2-5832cbc5f3255f3d2ee1c83c30c1b6193d51a3e3.tar.bz2
SoopyV2-5832cbc5f3255f3d2ee1c83c30c1b6193d51a3e3.zip
+ ice spray ping
+ rare drop ping for ice spray in dungeons
Diffstat (limited to 'features')
-rw-r--r--features/dungeonSolvers/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js
index 0e8691c..cf248c3 100644
--- a/features/dungeonSolvers/index.js
+++ b/features/dungeonSolvers/index.js
@@ -45,6 +45,8 @@ class DungeonSolvers extends Feature {
Arcade: "&e",
};
+ this.IceSprayWarn = new ToggleSetting("Ice Spray Drop Ping", "Renders a big title so you don't miss ice spray wands", true, "ice_spray_ping", this).contributor("EmeraldMerchant");
+
this.lastWorldload = Date.now()
this.lividFindEnabled = new ToggleSetting("Correct livid finder", "Finds the real livid to kill in the f5 boss fight", true, "livid_find_enabled", this);
this.lividFindHud = new ToggleSetting("Show Livid Hp", "Shows the nametag of the correct livid", true, "livid_hud_enabled", this).requires(this.lividFindEnabled);
@@ -905,6 +907,18 @@ class DungeonSolvers extends Feature {
}
}
+ step_5fps() {
+ if (this.IceSprayWarn.getValue()) {
+ World.getAllEntitiesOfType(net.minecraft.entity.item.EntityArmorStand).forEach((name) => {
+ let MobName = name.getName()
+ if (MobName.includes("Ice Spray Wand") && name.getTicksExisted() <= 199) {
+ Client.showTitle(`&r&6&l[&b&l&kO&6&l] ${MobName.toUpperCase()} &6&l[&b&l&kO&6&l]`, "", 0, 40, 10);
+ ChatLib.chat(`&6&lRARE DROP! &r${MobName}`)
+ }
+ })
+ }
+ }
+
initVariables() {
this.lividFindEnabled = undefined;
this.lividData = undefined;