$userLowestRole
$userLowestRole will return the lowest role of a specific user.
Usage
$userLowestRole[userID?;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | ID of the user you want the lowest role to be returned of. | false |
| guildID? | number | The ID of the guild. | false |
Example(s)
This will return the ID of your lowest role:
1client.command({2 name: "userLowestRole",3 code: `4 $userLowestRole[$authorID;$guildID]5 `6});