diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
commit | 431e4fc9d1657a50ebc34b8ac24f9bfaea06417f (patch) | |
tree | 5987bb14f38d2999c682970429f34b41eb3e5826 /features/guild/index.js | |
parent | e73f2efdf0f50aa775c540317394d46428e9704f (diff) | |
download | SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.gz SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.bz2 SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.zip |
Initial move to babel + change fetch to use async/await
Diffstat (limited to 'features/guild/index.js')
-rw-r--r-- | features/guild/index.js | 70 |
1 files changed, 0 insertions, 70 deletions
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 @@ -/// <reference types="../../../CTAutocomplete" /> -/// <reference lib="es2015" /> -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 |