$userID
$userID
will return a given user’s ID.
Usage
$userID[user]
Parameters
Field | Type | Description | Required |
---|---|---|---|
user | string, number | The name of the user who you want the user ID to be returned of. | true |
Example(s)
This will return your user ID:
1client.command({2 name: "userID",3 code: `4 $userID[$username]5 `6});