diff options
| author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-15 00:01:52 +0800 |
|---|---|---|
| committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-15 00:01:52 +0800 |
| commit | 7c8b44420a5134db2a238316b0ac05b9a19e7a33 (patch) | |
| tree | 234b17e0faf5b7df245e8de443709c7c2fbac35d /features/dungeonSolvers | |
| parent | 76a4d3fd258a82a059eb12ab1979fcb52471c10e (diff) | |
| download | SoopyV2-7c8b44420a5134db2a238316b0ac05b9a19e7a33.tar.gz SoopyV2-7c8b44420a5134db2a238316b0ac05b9a19e7a33.tar.bz2 SoopyV2-7c8b44420a5134db2a238316b0ac05b9a19e7a33.zip | |
+ make rooms detect secret counts from green ticks
Diffstat (limited to 'features/dungeonSolvers')
| -rw-r--r-- | features/dungeonSolvers/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 76bf5f4..21730ad 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -48,8 +48,6 @@ 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); @@ -103,6 +101,8 @@ class DungeonSolvers extends Feature { this.forgorEnabled = new ToggleSetting("Change withermancer death message to forgor ", "", true, "withermancer_forgor", this); this.f7waypoints = new ToggleSetting("Waypoints for P3 F7/M7", "(Only shows unfinished ones)", true, "f7_waypoints", this); + this.IceSprayWarn = new ToggleSetting("Ice Spray Drop Ping", "Renders a big title so you don't miss ice spray wands", false, "ice_spray_ping", this).contributor("EmeraldMerchant"); + this.registerChat("&r&c ☠ &r${player} were killed by Withermancer&r&7 and became a ghost&r&7.&r", (player, e) => { if (this.forgorEnabled.getValue()) { cancel(e); |
