aboutsummaryrefslogtreecommitdiff
path: root/features/events
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-06-17 22:39:20 +0800
committerGitHub <noreply@github.com>2022-06-17 22:39:20 +0800
commit66a4aab26c6571570ff2c07bf12b093ea74f88b3 (patch)
tree472820f91b10f72b9b4fcbf1048d128699a84698 /features/events
parentdb895fe62e0a7eabc2f9e36e7701c554a4b204a9 (diff)
parent44ce6c6aedd7d1e08814ad08cfeeb526c665ad06 (diff)
downloadSoopyV2-66a4aab26c6571570ff2c07bf12b093ea74f88b3.tar.gz
SoopyV2-66a4aab26c6571570ff2c07bf12b093ea74f88b3.tar.bz2
SoopyV2-66a4aab26c6571570ff2c07bf12b093ea74f88b3.zip
Merge pull request #12 from jakeQT/patch-9
Diffstat (limited to 'features/events')
-rw-r--r--features/events/index.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/features/events/index.js b/features/events/index.js
index 5a1420b..200e0cc 100644
--- a/features/events/index.js
+++ b/features/events/index.js
@@ -36,6 +36,7 @@ class Events extends Feature {
new SettingBase("NOTE: You must have music disabled for burrial guessess to work", "/togglemusic", false, "burrial_guess_into", this).requires(this.showBurrialGuess)
this.otherInquisWaypoints = new ToggleSetting("Show other users inquis locations", "May be usefull for loot share", true, "inquis_location_other", this)
+ this.otherInquisPing = new ToggleSetting("Show cool title when someone's inquis spawned", "May be usefull for loot share", true, "inquis_ping_other", this)
this.shinyBlocks = []
@@ -80,7 +81,10 @@ class Events extends Feature {
return
}
this.slayerLocationDataH[user] = [loc, Date.now()]
- if (this.otherInquisWaypoints.getValue()) Client.showTitle(user + "'s inquis spawned", "", 20, 60, 20)
+ if (this.otherInquisPing.getValue()) {
+ Client.showTitle("&r&6&l[&b&l&kO&6&l] MINOS INQUISITOR [&b&l&kO&6&l]", `${user}'s Inquisitor`, 0, 50, 10);
+ }
+
}
renderWorld(ticks) {
@@ -461,4 +465,4 @@ class Events extends Feature {
module.exports = {
class: new Events()
-} \ No newline at end of file
+}