TravBot-v3/src/commands/utility/invite.ts

13 lines
351 B
TypeScript
Raw Normal View History

import {NamedCommand} from "../../core";
export default new NamedCommand({
description: "Gives you the invite link.",
async run({send, client, args}) {
2021-04-10 13:34:55 +00:00
send(
`https://discordapp.com/api/oauth2/authorize?client_id=${client.user!.id}&permissions=${
args[0] || 8
}&scope=bot`
);
}
});