$clientOwnerIDs
$clientOwnerIDs will return the user IDs of the bot owner (or of multiple people if you have a team).
Usage
$clientOwnerIDs[separator?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| separator? | string | Separator to split user IDs. (default: “) | false |
Example(s)
This will return your user ID most likely:
1client.command({2 name: "clientOwnerIDs",3 code: `4 $clientOwnerIDs5 `6});