$concatTextSplit
$concatTextSplit will concatenates the text with the given separator.
Usage
$concatTextSplit[...text]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| text | string | Text to concat to the existing textSplit elements. | true |
Example(s)
This will add Hello, Bye to the already used $textSplit argument:
1client.command({2 name: "concatTextSplit",3 code: `4 $concatTextSplit[Hello;Bye]5 $textSplit[Good Morning, Goodnight;, ]6 `7});