$splitText
$splitText will return a value of $textSplit depending on the given index.
Usage
$splitText[index]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| index | number | Index of $textSplit content. | true |
Example(s)
This will return aoi.js as itβs the second argument of $textSplit:
1client.command({2 name: "splitText",3 code: `4 $splitText[2]5 $textSplit[@aoijs/aoi.db//aoi.js;//]6 `7});