Skip to content

$addTimestamp

$addTimestamp will add a timestamp to an embed.

Usage

$addTimestamp[ms?]

Parameters

FieldTypeDescriptionRequired
msnumberEpoch Time.false

Example(s)

This will create a embed with timestamp and description:

1
client.command({
2
name: "addTimestamp",
3
code: `
4
$description[Hello!]
5
$addTimestamp[192839ms]
6
`
7
});