Skip to content

$clientOwnerIDs

$clientOwnerIDs will return the user IDs of the bot owner (or of multiple people if you have a team).

Usage

$clientOwnerIDs[separator?]

Parameters

FieldTypeDescriptionRequired
separator?stringSeparator to split user IDs. (default: “)false

Example(s)

This will return your user ID most likely:

1
client.command({
2
name: "clientOwnerIDs",
3
code: `
4
$clientOwnerIDs
5
`
6
});