How to get last messages from a text channel ?
Hello, I would like to get messages from the newest to the oldest in a text channel.
My way to get the oldest:
But how to get the newest ?
Thanks guys
10 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Post the full error stack trace, not just the top part!
- Show your code!
- Explain what exactly your issue is.
- Not a discord.js issue? Check out #useful-servers.
- Issue solved? Press the button!Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
Thanks. So there is no way to get the newest messages first ?
oldMessages.first()
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
There is a solution maybe, I have to get the last part of the messages map like:
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
to get the last 100 messages i believe you could do <Collection>.last(100)
🙏
Thank you guys