Skip to content
sern

Plugins

First time here? View plugins

channelType

This plugin checks if a channel is the specified type

requirePermission

This is perm check, it allows users to parse the permission you want and let the plugin do the rest. (check bot or user for that perm).

publish

It allows you to publish your application commands using the discord.js library with ease.

disable

Disables a command entirely, for whatever reasons you may need.

ownerOnly

This is OwnerOnly plugin, it allows only bot owners to run the command, like eval.

subcommandPermCheck

Inspired by the plugin “requirePermission” created by Benzo-Fury & needhamgary, this plugin will set permissions for specific subcommands without manually writing it into the code.

dmOnly

This is dmOnly plugin, it allows commands to be run only in DMs.

buttonConfirmation

This is buttonConfirmation plugin, it runs confirmation prompt in the form of buttons. Note that you need to use edit/editReply in the command itself because we are already replying in the plugin!…

confirmation

Asks the user for a confirmation msg before executing the command

nsfwOnly

This plugin checks if the channel is nsfw and responds to user with a specified response if not nsfw

filter

Generalized filter plugin. all credit to trueharuu. Perform declarative conditionals as plugins.

assertFields

This plugin checks the fields of a ModalSubmitInteraction with regex or a custom callback

permCheck

This is perm check, it allows users to parse the permission you want and let the plugin do the rest. (check user for that perm). Each function (other than “command”) allows multiple options! [ { …

fromCallback

fromCallback turns a callback into a plugin result. if the callback returns truthy value, plugin continues. This control plugin works for every command type. The arguments of the callback mirror…

serverOnly

Checks if a command is available in a specific server.

cooldown

Allows you to set cooldowns (or “ratelimits”) for commands, limits user/channel/guild actions. An extra function cooldown2 is exported if you want your cooldown to be local to the command.