From 431e4fc9d1657a50ebc34b8ac24f9bfaea06417f Mon Sep 17 00:00:00 2001
From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com>
Date: Sat, 17 Sep 2022 19:39:05 +0800
Subject: Initial move to babel + change fetch to use async/await
---
features/guild/index.js | 70 --------------------------------------------
features/guild/metadata.json | 8 -----
2 files changed, 78 deletions(-)
delete mode 100644 features/guild/index.js
delete mode 100644 features/guild/metadata.json
(limited to 'features/guild')
diff --git a/features/guild/index.js b/features/guild/index.js
deleted file mode 100644
index e8e2895..0000000
--- a/features/guild/index.js
+++ /dev/null
@@ -1,70 +0,0 @@
-///
-///
-import Feature from "../../featureClass/class";
-import { toMessageWithLinks } from "../../utils/utils";
-import { fetch } from "../../utils/networkUtils";
-import ToggleSetting from "../settings/settingThings/toggle";
-import TextSetting from "../settings/settingThings/textSetting";
-
-class Guild extends Feature {
- constructor() {
- super()
- }
-
- onEnable() {
-
- this.bridgeBots = new Set()
- fetch("http://soopy.dev/api/soopyv2/gbots.json").json(bots => {
- bots.forEach(b => this.bridgeBots.add(b))
- })
-
- this.shortenPrefix = new ToggleSetting("Shorten guild message prefix", "from Guild > to G > ", false, "shorten_prefix", this)
- this.guildBot = new TextSetting("Bridge bot ign", "", "", "guild_bot_ign", this, "", false)
-
- //&r&2Guild > &6[MVP&0++&6] zZzSNOW &e[STAFF]&f: &r@niftynathan7, niftynathan7's weight: 20 087 (#1 198) (Skill: 8 771, Slayer: 1 263, Dungeons: 10 053) ,.,,,..,.,,.,,,....,,,,,,,,,..,,,,,..,,,..,,,.,,.,,.,..,,....,,....,,..,.&r
- //&r&2Guild > &6[MVP&4++&6] Soopyboo32 &e[STAFF]&f: &rasd&r
- //&r&2Guild > &6[MVP&1++&6] niftynathan7 &e[E]&f: &r@Soopyboo32, Soopyboo32's networth: $8 424 131 866 (#2 592) ,..,...,....,.,,,....,,,...,,,,,,,..,,.,,..,,.,.,,,.........,.....,,,,.....,..,,...,.,.,...,.,&r
- let ev = this.registerChat('&r&2Guild > ${player}&f: &r${msg}&r', (player, msg, event) => {
- if (msg.includes("[ITEM:")) return
- if (player.includes(":")) return; //stop people sending weard messages to troll using this
-
- //player = &6[MVP&0++&6] zZzSNOW &e[STAFF]
- let [_, rank, ign, grank] = player.match(/(&7|&[0-9a-fmnl]\[\w+(?:&[0-9a-fmnl]\+*&[0-9a-fmnl])?\] )(\w+)( &[0-9a-fmnl]\[\w+\])?/)
-
- cancel(event)
-
- let message = ""
- if (this.bridgeBots.has(ign) || ign.toLowerCase() === this.guildBot.getValue().toLowerCase()) {
- let [name, other] = msg.split(/ ?[\>\:\»] /g)
-
- if (other) {
- message = `&2B${this.shortenPrefix.getValue() ? "" : "ridge"} > &b${name.split(" replying to ").reverse().join(" &7⤷&b ").trim()}&f: ${msg.replace(name, "").replace(/^ ?[\>\:\»] /, "").trim()}`
- } else {
- if (msg.includes("---------------------------------------------") || msg.includes("You have 60 seconds to accept. Click here to join!")) {
- return //bridge bot bug
- }
- message = `&2B${this.shortenPrefix.getValue() ? "" : "ridge"} > &7⤷&f ${msg.trim()}`
- }
- } else {
- if (msg.match(/^@\w+, [\w\W]+[,.]+$/)) {
- let [_, name2, reply] = msg.match(/^@(\w+?), ([\w\W]+?)[,.]+$/)
- message = `&2B${this.shortenPrefix.getValue() ? "" : "ridge"} > &b${name2} &7⤷&f ${reply.trim()}`
- } else {
- message = `&2G${this.shortenPrefix.getValue() ? "" : "uild"} > ${rank}${ign}${grank || ""}&f: ${msg}`
- }
- }
-
-
- toMessageWithLinks(message).chat()
- })
- ev.trigger.triggerIfCanceled(false)
- }
-
- onDisable() {
-
- }
-}
-
-module.exports = {
- class: new Guild()
-}
\ No newline at end of file
diff --git a/features/guild/metadata.json b/features/guild/metadata.json
deleted file mode 100644
index babd19d..0000000
--- a/features/guild/metadata.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "Guild features",
- "description": "Features nice for guilds, eg bridge formatting",
- "isHidden": false,
- "isTogglable": true,
- "defaultEnabled": false,
- "sortA": 1
-}
\ No newline at end of file
--
cgit