$attachment
$attachment
will create an attachment.
Usage
$attachment[attachment;name;type?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
attachment | string | Content of the attachment, preferably a URL. | true |
name | string | Attachment name. | true |
type? | string | Attachment type. 1. URL (default) | false |
Example(s)
This will create an attachment:
1client.command({2 name: "attachment",3 code: `4 $attachment[https://cdn.discordapp.com/emojis/1063432790697328710.webp?size=96&quality=lossless;boost-icon.png;URL]5 `6});