-
Notifications
You must be signed in to change notification settings - Fork 358
/
TheClapBestClapPluginClapEver.plugin.js
145 lines (119 loc) · 4.52 KB
/
TheClapBestClapPluginClapEver.plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/**
* @name TheClapBestClapPluginClapEver
* @invite yNqzuJa
* @authorLink https://github.com/Metalloriff
* @donate https://www.paypal.me/israelboone
* @website https://metalloriff.github.io/toms-discord-stuff/
* @source https://github.com/Metalloriff/BetterDiscordPlugins/blob/master/TheClapBestClapPluginClapEver.plugin.js
*/
module.exports = (() =>
{
const config =
{
info:
{
name: "TheClapBestClapPluginClapEver",
authors:
[
{
name: "Metalloriff",
discord_id: "264163473179672576",
github_username: "metalloriff",
twitter_username: "Metalloriff"
}
],
version: "2.1.0",
description: "Literally useless, toxic cancer. Write 'clapclap$' at the beginning of your message to separate each word with a clap emoji. Write 'clapclap( :your_emoji: )$' to separate each word with your own custom emoji. 'superclapclap$' or 'superclapclap( :emoji: )$' for every letter instead of every word. 'ra$' to replace every letter with a regional indicator emoji. 'reverse$' to reverse your message. 'b$' to replace every 'b' with the B emoji. 'woke$' to capitalize every other letter. 'owo$' if you have no will to live.",
github: "https://github.com/Metalloriff/BetterDiscordPlugins/blob/master/TheClapBestClapPluginClapEver.plugin.js",
github_raw: "https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/TheClapBestClapPluginClapEver.plugin.js"
},
changelog:
[
{
title: "2.1.0",
type: "added",
items:
[
"Added 'woke$' option. This will capitalize every other letter in your message, showing that you are, in fact, the most intelligent and dominant person in chat."
]
}
]
};
return (([Plugin, Api]) => {
const plugin = (Plugin, Api) =>
{
const { DiscordModules, Patcher } = Api;
return class TheClapBestClapPluginClapEver extends Plugin
{
constructor()
{
super();
}
onStart()
{
Patcher.after(DiscordModules.MessageActions, "sendMessage", (_, [, message]) =>
{
const content = message.content.toLowerCase();
const clapclap = (/^clapclap(\S| )*\$/g).exec(content) || (/^superclapclap(\S| )*\$/g).exec(content);
if (clapclap)
{
const filler = clapclap[0].includes("(") && clapclap[0].includes(")")
? clapclap[0].substr(clapclap[0].indexOf("(") + 1, clapclap[0].indexOf(")") - clapclap[0].indexOf("(") - 1)
: " :clap: ";
message.content = message.content.substr(clapclap[0].length, message.content.length)
.split(clapclap[0].startsWith("super") ? "" : " ")
.join(filler);
message.content = filler + message.content + filler;
return;
}
switch (content.split("$")[0])
{
case "ra":
const ra = (/^ra\$/g).exec(content);
message.content = message.content.toLowerCase().substr(ra[0].length, message.content.length)
.split(" ")
.join("\t")
.replace(/[A-Za-z]/g, x => ` :regional_indicator_${x.toLowerCase()}: `);
break;
case "reverse":
const reverse = (/^reverse\$/g).exec(content);
message.content = message.content.substr(reverse[0].length, message.content.length)
.split("")
.reverse()
.join("");
break;
case "owo":
const owo = (/^owo\$/g).exec(content);
message.content = message.content.substr(owo[0].length, message.content.length)
.replace(/r/g, "w")
.replace(/R/g, "W")
.replace(/l/g, "w")
.replace(/L/g, "W")
.replace(/ n/g, " ny")
.replace(/ N/g, " Ny")
.replace(/ove/g, "uv")
.replace(/OVE/g, "UV")
+ " " + ["owo", "OwO", "uwu", "UwU", ">w<", "^w^", "♥w♥"][7 * Math.random() << 0];
break;
case "b":
const b = (/^b\$/g).exec(content);
message.content = message.content.substr(b[0].length, message.content.length)
.replace(/b/g, ":b:");
break;
case "woke":
const woke = (/^woke\$/g).exec(content);
message.content = message.content.substr(woke[0].length, message.content.length)
.replace(/.{2}/gm, c => c[0].toUpperCase() + c[1].toLowerCase());
break;
}
});
}
onStop()
{
Patcher.unpatchAll();
}
}
};
return plugin(Plugin, Api);
})(global.ZeresPluginLibrary.buildPlugin(config));
})();