diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-30 20:23:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 20:23:48 +0800 |
commit | 45a31eda50895eca216d6a278f8e86bcdb7b0889 (patch) | |
tree | dd83e5c240a271205e11847fcda5454a15fa811a /features/dungeonSolvers/index.js | |
parent | b245c8f3b9c97a3681303ceb6f60ef4abac64a1e (diff) | |
parent | 5832cbc5f3255f3d2ee1c83c30c1b6193d51a3e3 (diff) | |
download | SoopyV2-45a31eda50895eca216d6a278f8e86bcdb7b0889.tar.gz SoopyV2-45a31eda50895eca216d6a278f8e86bcdb7b0889.tar.bz2 SoopyV2-45a31eda50895eca216d6a278f8e86bcdb7b0889.zip |
Merge pull request #23 from EmeraldMerchant/patch-22
+ ice spray ping
Diffstat (limited to 'features/dungeonSolvers/index.js')
-rw-r--r-- | features/dungeonSolvers/index.js | 14 |
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; |