$nonEscape
$nonEscape will stop escaping special characters.
Usage
$nonEscape[message]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| message | string | Text you don’t want to be escaped. | true |
Example(s)
This will stop from escaping certain characters:
1client.command({2 name: "nonEscape",3 code: `4 $nonEscape[Hello [;)]]5 `6});