$blackListIDs

Prevent specific users from using a command by blacklisting their Discord IDs.

Description

The $blackListIDs function allows you to restrict access to a command for a specified list of users. If a blacklisted user attempts to use the command, the function will return a custom error message.

Usage

$blackListIDs[userID;userID;...;error message]

Parameters:

  • userID: The Discord ID of a user to blacklist. Separate multiple IDs with semicolons (😉.
  • error message: (Optional) The message to display if a blacklisted user tries to use the command.

Examples

Blacklisted User:

In this example, user ID 788361834360864808 is blacklisted from using the command.

!!exec $blackListIDs[788361834360864808;You are blacklisted from using this command!]<br>Hello there!

This will produce the following output:

Member04/04/2025
!!exec $blackListIDs[788361834360864808;You are blacklisted from using this command!]
Hello there!

Custom Command Bot 04/04/2025
You are blacklisted from using this command!

Unblacklisted User:

If the user is not blacklisted, the command will proceed as normal. In this example, the user is not blacklisted, so the "Hello there!" message is returned.

!!exec $blackListIDs[788361834360864808;You are blacklisted from using this command!]
Hello there!

This will produce the following output, assuming the user is not blacklisted:

Member04/04/2025
!!exec $blackListIDs[788361834360864808;You are blacklisted from using this command!]
Hello there!

Custom Command Bot 04/04/2025
Hello there!