$second
$second will return the current second in UTC.
Usage
$secondExample(s)
This will returns the current second:
1client.command({2 name: "second",3 code: `4 $second5 `6});You can change the timezone using $timezone:
1client.command({2 name: "second",3 code: `4 $second5 $timezone[America/New_York]6 ` // returns current second in New York7});