diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-20 18:31:07 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-20 18:31:07 +0800 |
commit | 82d239379d4f5cbbc3832a70b752ce2c314404be (patch) | |
tree | d310caf41ab60fc608801ad79591e9f776ac80bb /features/nether | |
parent | 0e16cc3b487f03788d9d80957c0fdfe14201f626 (diff) | |
download | SoopyV2-82d239379d4f5cbbc3832a70b752ce2c314404be.tar.gz SoopyV2-82d239379d4f5cbbc3832a70b752ce2c314404be.tar.bz2 SoopyV2-82d239379d4f5cbbc3832a70b752ce2c314404be.zip |
- remove vanquiser waypoints
Diffstat (limited to 'features/nether')
-rw-r--r-- | features/nether/index.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/features/nether/index.js b/features/nether/index.js index 81d31e6..0d84003 100644 --- a/features/nether/index.js +++ b/features/nether/index.js @@ -54,7 +54,6 @@ class Nether extends Feature { this.tenacityLine = new ToggleSetting("Show line for fireball in dojo tenacity", "This may help you to dodge the fireballs", false, "dojo_tanacity", this) this.disciplineOverlay = new ToggleSetting("Show overlay for zombies in dojo discipline", "", true, "dojo_discipline", this).contributor("Empa") this.hostageWaypoints = new ToggleSetting("Show hostage waypoints", "Waypoint for location of hostage in rescue missions", true, "hostage_waypoint", this) - this.vaniquisherWaypoints = new ToggleSetting("Show vaniqusher waypoints", "Shows the locations of other player's vanquishers", true, "vanquisher_waypoint", this) this.slugfishTimer = new ToggleSetting("Show timer over rod", "This may help with fishing slugfish", false, "slugfish_timer", this) this.registerCustom("packetReceived", this.packetReceived).registeredWhen(() => this.isInDojo()) this.registerStep(true, 1, this.step1S).registeredWhen(() => this.isInNether()) @@ -84,7 +83,6 @@ class Nether extends Feature { this.lastBlock = undefined this.hookThrown = 0 - this.spawnedVanqs = [] this.registerChat("&r&r&r &r&aTest of Swiftness &r&e&lOBJECTIVES&r", () => { if (this.speedNextBlock.getValue()) { this.inSwiftness = true @@ -112,14 +110,6 @@ class Nether extends Feature { this.registerEvent("worldLoad", () => { this.rescueMissionDifficulty = this.rescueMissionType = undefined }) - - this.registerChat("&r&aA ${*}Vanquisher &r&ais spawning nearby!&r", () => { - socketConnection.sendVancData({ loc: [Math.round(Player.getX()), Math.round(Player.getY()), Math.round(Player.getZ())] }); - }) - } - - vanqData(loc, name) { - this.spawnedVanqs.push([loc, name, Date.now()]) } tick() { @@ -257,12 +247,6 @@ class Nether extends Feature { drawCoolWaypoint(location[0], location[1], location[2], 255, 0, 0, { name: "Hostage" }) } - if (this.vaniquisherWaypoints.getValue()) { - this.spawnedVanqs.forEach(vanq => { - drawCoolWaypoint(vanq[0][0], vanq[0][1], vanq[0][2], 255, 0, 0, { name: vanq[1] + "'s vanquisher (" + Math.floor((Date.now() - vanq[2]) / 1000) + "s)" }) - }) - } - if (this.slugfishTimer.getValue()) { let hook = Player.getPlayer()[f.fishEntity] if (hook && this.hookThrown) { @@ -281,7 +265,6 @@ class Nether extends Feature { this.disciplineZombies[k] = this.disciplineZombies[k].filter(e => !e.getEntity()[f.isDead]) }) if (this.dojoFireBalls) this.dojoFireBalls = this.dojoFireBalls.filter(e => !e[f.isDead]) - if (this.spawnedVanqs) this.spawnedVanqs = this.spawnedVanqs.filter(a => Date.now() - a[2] < 60000) } getBlockIdFromState(state) { |