UNPKG

@tryforge/forgescript

Version:

ForgeScript is a comprehensive package that empowers you to effortlessly interact with Discord's API. It ensures scripting remains easy to learn and consistently effective.

40 lines 1.46 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const discord_js_1 = require("discord.js"); const structures_1 = require("../../structures"); exports.default = new structures_1.NativeFunction({ name: "$followChannel", version: "2.3.0", description: "Follows given announcement channel, returns webhook id", brackets: true, unwrap: true, args: [ { name: "channel ID", description: "The channel to follow", type: structures_1.ArgType.Channel, rest: false, required: true, check: (i) => i.type === discord_js_1.ChannelType.GuildAnnouncement, }, { name: "channel ID", description: "The channel to crosspost messages in", type: structures_1.ArgType.Channel, rest: false, required: true, check: (i) => i.type === discord_js_1.ChannelType.GuildText, }, { name: "reason", description: "The reason for following the channel", type: structures_1.ArgType.String, rest: false, } ], output: structures_1.ArgType.Webhook, async execute(ctx, [news, chan, reason]) { return this.success("guild" in news ? (await news.guild?.channels.addFollower(news, chan, reason || undefined).catch(ctx.noop)) : undefined); }, }); //# sourceMappingURL=followChannel.js.map