diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-16 14:34:59 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-16 14:34:59 +0800 |
commit | c7dd5f507cc0c2a0b17d008d0c87ef94e3b65668 (patch) | |
tree | 3d02f79662f30ac966ff9be778a09029d97b7dc0 /features/dungeonSolvers | |
parent | 1b89623d96e16c30caf067854dcb41f8f2779705 (diff) | |
download | SoopyV2-c7dd5f507cc0c2a0b17d008d0c87ef94e3b65668.tar.gz SoopyV2-c7dd5f507cc0c2a0b17d008d0c87ef94e3b65668.tar.bz2 SoopyV2-c7dd5f507cc0c2a0b17d008d0c87ef94e3b65668.zip |
add slayer exp/hour (similar to dungeons exp/hour)
Diffstat (limited to 'features/dungeonSolvers')
-rw-r--r-- | features/dungeonSolvers/index.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 52c0406..afbaa79 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -55,7 +55,7 @@ class DungeonSolvers extends Feature { this.bloodCampAssist = new ToggleSetting("Assist blood camp", "Helps guess where and when blood mobs will spawn", true, "blood_camp_assist", this) this.runSpeedRates = new ToggleSetting("Show run speed and exp rates", "(Run speed includes downtime inbetween runs, only shows while doing dungeon runs)", true, "run_speed_rates", this) - this.runSpeedRatesElement = new HudTextElement().setText("&eRun Speed: &floading...\n&eExp/hour: &floading...") + this.runSpeedRatesElement = new HudTextElement().setText("&6Run speed&7> &floading...\n&6Exp/hour&7> &floading...\n&6Runs/hour&7> &floading...") .setToggleSetting(this.runSpeedRates) .setLocationSetting(new LocationSetting("Run speed and exp rates location", "Allows you to edit the location of the information", "run_speed_rates_location", this, [10, 100, 1, 1]) .requires(this.runSpeedRates) @@ -85,6 +85,12 @@ class DungeonSolvers extends Feature { ChatLib.chat(player + " forgor ☠") } }) + this.registerChat("&r&c ☠ &r${player} was killed by Withermancer&r&7 and became a ghost&r&7.&r", (player, e)=>{ + if(this.forgorEnabled.getValue()){ + cancel(e) + ChatLib.chat(player + " forgor ☠") + } + }) this.spiritBowPickUps = [] this.registerChat("&r&aYou picked up the &r&5Spirit Bow&r&a! Use it to attack &r&cThorn&r&a!&r", ()=>{ |