$let
$let will store temporary variables which can be retrieved by $get.
Usage
$let[varname;value]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| varname | string | Name of the temporary variable. | true |
| value | string | Value of the temporary variable you want to save. | true |
Example(s)
This will return Ayaka from $get:
1client.command({2 name: "let",3 code: `4$get[genius]5$let[genius;Ayaka]6`7});