#.fetchSubscribers()
1 messages · Page 1 of 1 (latest)
https://old.discordjs.dev/#/docs/discord.js/main/typedef/GuildScheduledEventResolvable
Could you explain to me what is Snowflake standing on there?
Discord.js is a powerful node.js module that allows you to interact with the Discord API very easily. It takes a much more object-oriented approach than most other JS Discord libraries, making your bot's code significantly tidier and easier to comprehend.
It requires first parameter so yeah
• Discord ids follow the snowflake format: learn more
• Discord ids must be represented as strings as they are larger than Number.MAX_SAFE_INTEGER, the largest integer that can be represented in JavaScript
- client.guilds.cache.get(123456789012345678)
+ client.guilds.cache.get("123456789012345678")
So I have to add ID of event as I understand
Yes