$hoistedRole
$hoistedRole will return the highest hoisted role of an user.
Usage
$hoistedRole[userID?;guildID?;option?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| userID? | number | The ID of the user. | false | 
| guildID? | number | the ID of the guild. | false | 
| option? | string | The option how to return the role  1. name 2. id (default) 3. mention  | false | 
Example(s)
This will return the name of your highest hoisted role:
1client.command({2    name: "hoistedRole",3    code: `4  $hoistedRole[$authorID;$guildID;name]5  `6});