aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-06-20 20:28:22 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-06-20 20:28:22 +0800
commit498ad228f758cec6fd59b165eceace28cc6ad10d (patch)
treed1b76d79198914782621ef2634886fa0e6cfcb1b
parent82d239379d4f5cbbc3832a70b752ce2c314404be (diff)
downloadSoopyV2-498ad228f758cec6fd59b165eceace28cc6ad10d.tar.gz
SoopyV2-498ad228f758cec6fd59b165eceace28cc6ad10d.tar.bz2
SoopyV2-498ad228f758cec6fd59b165eceace28cc6ad10d.zip
+ Change default keybind for diana guess warp to CHAR_NONE
-rw-r--r--features/events/index.js8
-rw-r--r--features/slayers/index.js2
2 files changed, 2 insertions, 8 deletions
diff --git a/features/events/index.js b/features/events/index.js
index 04f5879..cda2c64 100644
--- a/features/events/index.js
+++ b/features/events/index.js
@@ -75,7 +75,7 @@ class Events extends Feature {
this.dingIndex = 0
this.dingSlope = []
- this.warpBindDefault = new TextSetting("Default keybind", "Eg KEY_F", "KEY_F", "inquis_keybind_default", this, "", false)
+ this.warpBindDefault = new TextSetting("Default keybind", "Eg KEY_F", "CHAR_NONE", "inquis_keybind_default", this, "", false)
try {
this.warpBind = getKeyBindFromKey(Keyboard[this.warpBindDefault.getValue()], "Warp to nearest location to burrial guess");
@@ -121,12 +121,6 @@ class Events extends Feature {
warpData.worldload = [Player.getX(), Player.getY(), Player.getZ()]
ChatLib.chat(this.FeatureManager.messagePrefix + "Set /hub location!")
})
- this.registerCommand("setpmemb", (...memb) => {
- this.FeatureManager.features["dataLoader"].class.partyMembers.clear()
- memb.forEach(m => {
- this.FeatureManager.features["dataLoader"].class.partyMembers.add(memb)
- })
- })
}
entityJoinWorldEvent(e) {
diff --git a/features/slayers/index.js b/features/slayers/index.js
index 4135198..3e41b94 100644
--- a/features/slayers/index.js
+++ b/features/slayers/index.js
@@ -32,7 +32,7 @@ class Slayers extends Feature {
this.emanHpElement = new HudTextElement().setToggleSetting(this.emanHpGuiElement).setLocationSetting(new LocationSetting("Eman Hp Location", "Allows you to edit the location of the enderman hp", "eman_location", this, [10, 50, 1, 1]).requires(this.emanHpGuiElement).editTempText("&6Enderman&7> &f&l30 Hits"));
this.hudElements.push(this.emanHpElement);
- this.hideSummonsForLoot = new ToggleSetting("Hides summons for 3s to see t4 drops", "This will make loots more visible.", false, "show_loot", this).contributor("EmeraldMerchant");
+ this.hideSummonsForLoot = new ToggleSetting("Hides summons for 3s to see t4 voidgloom drops", "This will make loots more visible.", false, "show_loot", this).contributor("EmeraldMerchant");
this.allEmanBosses = new ToggleSetting("Hides summons for all eman bosses", "Hides summon for not just your boss, might fix ^ sometimes not working", false, "show_loot_all_bosses", this).requires(this.hideSummonsForLoot).contributor("EmeraldMerchant");
this.slayerXpGuiElement = new ToggleSetting("Render the xp of your current slayer on your screen", "This will help you to know how much xp u have now w/o looking in chat", true, "slayer_xp_hud", this).contributor("EmeraldMerchant");