aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/loadingQuotes.ts
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-29 22:53:23 +0200
committerVendicated <vendicated@riseup.net>2022-10-29 22:53:23 +0200
commit739b1e47d40d645076bb74d82355f5e45edcd84e (patch)
tree2f2778da37b39b9249a41a685b35cde57fdd2577 /src/plugins/loadingQuotes.ts
parentd72542405af8873a542b55128d8b0c6311183235 (diff)
downloadVencord-739b1e47d40d645076bb74d82355f5e45edcd84e.tar.gz
Vencord-739b1e47d40d645076bb74d82355f5e45edcd84e.tar.bz2
Vencord-739b1e47d40d645076bb74d82355f5e45edcd84e.zip
New plugin: LoadingQuotes
Diffstat (limited to 'src/plugins/loadingQuotes.ts')
-rw-r--r--src/plugins/loadingQuotes.ts70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/plugins/loadingQuotes.ts b/src/plugins/loadingQuotes.ts
new file mode 100644
index 0000000..c700119
--- /dev/null
+++ b/src/plugins/loadingQuotes.ts
@@ -0,0 +1,70 @@
+/*
+ * Vencord, a modification for Discord's desktop app
+ * Copyright (c) 2022 Vendicated and contributors
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+import { Devs } from "../utils/constants";
+import definePlugin from "../utils/types";
+
+// These are Xor encrypted to prevent you from spoiling yourself when you read the source code.
+// don't worry about it :P
+const quotes = [
+ "Eyrokac",
+ "Rdcg$l`'k|~n",
+ 'H`tf$d&iajo+d`{"',
+ "Sucqplh`(Eclhualva()&",
+ "Lncgmka'8KNMDC,shpanf'`x./,",
+ "Ioqweijnfn*IeuvfvAotkfxo./,",
+ 'Hd{#cp\x7Ft$)nbd!{lq%mig~*\x7Fh`v#mk&sm{gx nd#idjb(a\x7Ffao"bja&amdkge!Rloìkhf)hyedfjjb*\'^hzdrdmm$lu\'|ao+mnqw$fijxh~bbmg#Tjmîefd+fnp#lpkffz5',
+ "h",
+ "sijklm&cam*rot\"hjjq'|ak\x7F xmv#wc'ep*mawmvvlrb(|ynr>\"Aqq&cgg-\x7F ugoh%rom)e\x7Fhdpp%$",
+ 'Tnfb}"u\'~`nno!kp$vvhfzeyee"a}%Tfam*Xh`fls%Jboldos-"lj`&hn)~ce!`jcbct|)gdbhnf$wikm$zgaxkmc%afely+og"144?\'ign+iu%p$qisiefr gpfa$',
+ "Ndtfv%ahfgk+ghtf$|ir(|z' Oguaw&`ggdj mgw$|ir(me|n",
+ "(!ͣ³$͙ʐ'ͩ¹#",
+ "(ネ◗ロ◑,マ-2ャユ✬",
+ "Ynw#hjil(ze+psgwp|&sgmkr!",
+ "Tikmolh`(fl+a!dvjk\x7F'y|e\x7Fe/,-",
+ "3/3750?5><9>885:7",
+ "mdmt",
+ "Wdn`khc+(oxbeof",
+ 'Ig"zkp*\'g{*xolglj`&~g|*gowg/$mgt(Eclm`.#ticf{l*xed"wl`&Kangj igbhqn\'d`dn `v#lqrw{3%$bhv-h|)kangj_imwhlhb',
+ "Tscmw%Tnoa~x"
+];
+
+export default definePlugin({
+ name: "LoadingQuotes",
+ description: "Replace Discords loading quotes",
+ authors: [Devs.Ven],
+ patches: [
+ {
+ find: ".LOADING_DID_YOU_KNOW",
+ replacement: {
+ match: /\._loadingText=.+?random\(.+?;/s,
+ replace: "._loadingText=Vencord.Plugins.plugins.LoadingQuotes.quote;",
+ },
+ },
+ ],
+
+ xor(quote: string) {
+ const key = "read if cute";
+ const codes = Array.from(quote, (s, i) => s.charCodeAt(0) ^ (i % key.length));
+ return String.fromCharCode(...codes);
+ },
+
+ get quote() {
+ return this.xor(quotes[Math.floor(Math.random() * quotes.length)]);
+ }
+});