This repository was archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
59 lines (48 loc) · 1.38 KB
/
main.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
const tmi = require("tmi.js");
const { GetToken } = require("botway.js");
const reputation = {};
const client = new tmi.Client({
options: { debug: true },
connection: {
secure: true,
reconnect: true,
},
identity: {
username: "USERNAME",
password: GetToken(),
},
channels: ["CHANNEL_NAME"], // you can use your username as channel name
});
client.connect();
client.on("message", (channel, tags, message, self) => {
const reputationRegex = /(\+\+|--)/g;
if (reputationRegex.test(message)) {
const [user, operator] = message.split(reputationRegex);
if (!(user in reputation)) {
reputation[user] = 0;
}
if (operator === "++") {
reputation[user]++;
} else {
reputation[user]--;
}
client.say(
channel,
`@${tags.username}, ${user} now has a reputation of ${reputation[user]}`
);
return;
}
if (self || !message.startsWith("!")) {
return;
}
const args = message.slice(1).split(" ");
const command = args.shift().toLowerCase();
if (command === "echo") {
client.say(channel, `@${tags.username}, you said: "${args.join(" ")}"`);
} else if (command === "hello") {
client.say(channel, `@${tags.username}, Yo what's up`);
} else if (command === "dice") {
const result = Math.floor(Math.random() * 6) + 1;
client.say(channel, `@${tags.username}, You rolled a ${result}.`);
}
});