public async Task InviteAsync ( [Summary("The ID of the bot whose invite to request.")] ulong botID, [Summary("The permissions integer for the bot. Refer to the Discord API for how to get this number.")] ulong permissions ) { await ReplyAsync(InviteUtilities.GenerateBotInviteLink(botID, permissions)); }
public async Task InviteAsync() { await ReplyAsync(InviteUtilities.GenerateBotInviteLink(BotCredentials.Instance.ClientID, (ulong)BotClientManager.MinimumBotPermissions)); }