aboutsummaryrefslogtreecommitdiff
path: root/features/slayers
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-05-01 20:25:17 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-05-01 20:25:17 +0800
commitb5f6c8eafcb5c3fc0e5389f5927dc85bbbafba96 (patch)
treec42f52891286f7a3b7ec4e595697b4a110e4fb67 /features/slayers
parent7483831198865f501c832f8f1f46c8fa95ccd197 (diff)
downloadSoopyV2-b5f6c8eafcb5c3fc0e5389f5927dc85bbbafba96.tar.gz
SoopyV2-b5f6c8eafcb5c3fc0e5389f5927dc85bbbafba96.tar.bz2
SoopyV2-b5f6c8eafcb5c3fc0e5389f5927dc85bbbafba96.zip
update!
Diffstat (limited to 'features/slayers')
-rw-r--r--features/slayers/index.js43
1 files changed, 41 insertions, 2 deletions
diff --git a/features/slayers/index.js b/features/slayers/index.js
index 408c123..e5f7219 100644
--- a/features/slayers/index.js
+++ b/features/slayers/index.js
@@ -3,10 +3,11 @@
import Feature from "../../featureClass/class";
import { f, m } from "../../../mappings/mappings";
import { numberWithCommas, timeNumber } from "../../utils/numberUtils";
-import { drawBoxAtBlock, drawBoxAtEntity, drawFilledBox, drawLine } from "../../utils/renderUtils";
+import { drawBoxAtBlock, drawBoxAtEntity, drawCoolWaypoint, drawFilledBox, drawLine } from "../../utils/renderUtils";
import HudTextElement from "../hud/HudTextElement";
import LocationSetting from "../settings/settingThings/location";
import ToggleSetting from "../settings/settingThings/toggle";
+import socketConnection from "../../socketConnection";
class Slayers extends Feature {
constructor() {
@@ -48,6 +49,8 @@ class Slayers extends Feature {
this.hudElements.push(this.dulkirThingElement);
+ this.otherSlayerWaypoints = new ToggleSetting("Show other users slayer boss locations", "May be usefull for loot share", true, "slayer_location_other", this)
+
this.lastSlayerFinishes = [];
this.lastSlayerExps = [];
this.slayerExp = {};
@@ -104,6 +107,8 @@ class Slayers extends Feature {
this.emanStartedSittingTime = -1
this.pillerE = undefined
this.lastPillerDink = 0
+ this.lastServer = undefined
+ this.slayerLocationDataH = {}
this.entityAttackEventLoaded = false;
this.entityAttackEventE = undefined;
@@ -114,6 +119,22 @@ class Slayers extends Feature {
this.registerEvent("worldLoad", this.worldLoad);
this.registerEvent("renderOverlay", this.renderHud);
this.registerStep(true, 2, this.step);
+ this.registerForge(Java.type("net.minecraftforge.client.event.RenderWorldLastEvent"), this.renderWorldLast)
+ }
+
+ renderWorldLast() {
+ if (!this.otherSlayerWaypoints) return
+ Object.keys(this.slayerLocationDataH).forEach(key => {
+ drawCoolWaypoint(this.slayerLocationDataH[key][0][0], this.slayerLocationDataH[key][0][1], this.slayerLocationDataH[key][0][2], 255, 0, 0, { name: key + "'s boss" })
+ })
+ }
+
+ slayerLocationData(loc, user) {
+ if (!loc) {
+ delete this.slayerLocationDataH[user]
+ return
+ }
+ this.slayerLocationDataH[user] = [loc, Date.now()]
}
renderHud() {
@@ -202,6 +223,13 @@ class Slayers extends Feature {
}
}
+ if (this.lastServer !== this.FeatureManager.features["dataLoader"].class.stats.Server) {
+ this.lastServer = this.FeatureManager.features["dataLoader"].class.stats.Server;
+
+ socketConnection.setSlayerServer(this.FeatureManager.features["dataLoader"].class.stats.Server);
+ }
+
+ let lastBossSlainMessage = this.bossSlainMessage
this.bossSlainMessage = false;
let dis1 = false;
this.dulkirThingElement.setText("")
@@ -228,10 +256,16 @@ class Slayers extends Feature {
//slayerExp[lastSlayerType] += lastSlayerExp
}
if (line.getName().includes("Boss slain!")) {
+ if (!lastBossSlainMessage) {
+ socketConnection.sendSlayerSpawnData({ loc: null, lobby: this.FeatureManager.features["dataLoader"].class.stats.Server });
+ }
this.bossSlainMessage = true;
}
if (line.getName().includes("Slay the boss!")) {
+ if (!this.bossSpawnedMessage) {
+ socketConnection.sendSlayerSpawnData({ loc: [Math.round(Player.getX()), Math.round(Player.getY()), Math.round(Player.getZ())], lobby: this.FeatureManager.features["dataLoader"].class.stats.Server });
+ }
if (!this.bossSpawnedMessage && !this.emanBoss) {
this.nextIsBoss = Date.now();
}
@@ -246,7 +280,6 @@ class Slayers extends Feature {
&& lineSplitThing[0].split("/").length === 2
&& lineSplitThing[1] === "Kills") {
let kills = lineSplitThing[0].split("/").map(a => parseInt(a))
- console.log(kills[0], kills[1])
if (kills[0] / kills[1] >= 0.9) {
this.dulkirThingElement.setText(line.getName())
}
@@ -474,6 +507,12 @@ class Slayers extends Feature {
} else {
this.slayerSpeedRatesElement.setText("");
}
+
+ Object.keys(this.slayerLocationDataH).forEach(n => {
+ if (this.slayerLocationDataH[n][1] + 60000 * 3 < Date.now()) {
+ delete this.slayerLocationDataH[n]
+ }
+ })
}
initVariables() {