$max
$max returns the biggest number from the provided numbers.
Usage
$max[...numbers]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| numbers | number | The numbers where the biggest number will be searched. | true |
Example(s)
This will return 91 since its the biggest number provided:
1client.command({2 name: "max",3 code: `$max[17;42;91;5;63;28;55;10;77;36]`4});