$guildRoleIconURL
$guildRoleIconURL will retrieve the image URL of the role icon.
Usage
$guildRoleIconURL[guildId?;roleId]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildId? | number | ID of the guild where the role exists. | false |
| roleId | number | ID of the role you want to check if it exists. | true |
Example(s)
This will return the image URL of the role icon:
1client.command({2 name: "guildRoleIconURL",3 code: `4 $guildRoleIconURL[$guildID;900004369355931729]5 `6});