harmony/examples/ping.ts

41 lines
968 B
TypeScript
Raw Normal View History

import { Client, Message, Intents } from '../mod.ts'
const client = new Client();
client.on("ready", () => {
console.log(`Logged in as ${client.user?.tag}!`);
});
client.on("messageCreate", (msg: Message) => {
2020-11-07 02:32:14 +00:00
if (msg.content === "!ping") {
console.log("Command Used: Ping");
msg.reply("pong!");
}
});
console.log("discord.deno - ping example");
const token = prompt("Input Bot Token:");
2020-11-07 02:53:42 +00:00
if (token === null) {
console.log("No token provided");
Deno.exit();
}
const intents = prompt("Input Intents (0 = All, 1 = Presence, 2 = Server Members, 3 = None):");
2020-11-07 02:53:42 +00:00
if (intents === null || !["0", "1", "2", "3"].includes(intents)) {
console.log("No intents provided");
Deno.exit();
}
let ints;
2020-11-07 02:53:42 +00:00
if (intents === "0") {
ints = Intents.All;
2020-11-07 02:53:42 +00:00
} else if (intents === "1") {
ints = Intents.Presence;
2020-11-07 02:53:42 +00:00
} else if (intents === "2") {
ints = Intents.GuildMembers;
} else {
ints = Intents.None;
}
client.connect(token, ints);