Use this page to learn how to make countdowns for your server.
You add a set of countdowns for your server. Then, everyday at 10:30 PM Romania time (GMT+2), the bot will send a reminder.
The Webhook URL is a link provided by Discord. You need to have sufficient permissions to be able to create webhook integrations.
This is just some information that is stored along the webhook URL.
These are the core of the bot. Each webhook URL has attached a number of "elements", which get processed and translated into Discord embeds, which get sent directly to Discord.
There isn't a hard limit, but any more than 40 elements will probably cause you to hit Discord's ratelimit.
Each element has a type:
normalCountdownsemojiDaymessageAny element must contain the properties:
typecolormessage elements!thumbnailurl with the URL of the thumbnail. Read more on Discord's docsmessage elements!This object contains the following properties:
countdownsEach countdown in the list is an object containing the following properties:
namedateappendWeeks [optional]This object contains the following properties:
nameemojidateThis object contains the following properties:
embed[
{
"type": "message",
"embed": {
"color": 1290139,
"description": "An example element from CountdownDiscord 2",
"fields": [
{
"name": "I can put",
"value": "whatever I want here"
}
]
}
},
{
"type": "normalCountdowns",
"color": 1290139,
"countdowns": [
{
"name": ":fire: Bacalaureat :fire:",
"date": "2021-06-28T07:00:00",
"comment": "any additional properties will politely be ignored"
},
{
"name": "The Fire of Notre Dame",
"date": "2020-03-22T00:00:00",
"commentz": "i can't be bothered to look it up"
}
]
},
{
"type": "emojiDay",
"color": 1290110,
"name": "Amogus 2 Release Date",
"emoji": ":japanese_goblin:",
"emojiComment": "it can be any string, really",
"date": "2021-08-01T00:00:00"
}
]