BasicReplyPagination.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. const {MessageEmbed, Client, MessageButton, Intents} = require('discord.js');
  2. const {MessageReplyPagination, NextPageButton, PreviousPageButton} = require("djs-button-pages");
  3. //Array of embeds for pagination.
  4. const embeds =
  5. [
  6. new MessageEmbed().setColor("RANDOM").setDescription("First page!"),
  7. new MessageEmbed().setColor("RANDOM").setDescription("Wow! It's second page!"),
  8. new MessageEmbed().setColor("RANDOM").setDescription("Unbelivable! Third class page!"),
  9. new MessageEmbed().setColor("RANDOM").setDescription("Not possible! Fourth page!"),
  10. new MessageEmbed().setColor("RANDOM").setDescription("Not probable! Special fifth page!"),
  11. new MessageEmbed().setColor("RANDOM").setDescription("Progress! It's page with number six that is stored with number five!"),
  12. new MessageEmbed().setColor("RANDOM").setDescription("You're feeling with determination because of the seven page!"),
  13. new MessageEmbed().setColor("RANDOM").setDescription("You shall not pass! It's the last and the latest page!"),
  14. ]
  15. //Array of buttons for pagination.
  16. const buttons =
  17. [
  18. new PreviousPageButton(new MessageButton().setCustomId("prev").setLabel("Previous").setStyle("PRIMARY")),
  19. new NextPageButton(new MessageButton().setCustomId("next").setLabel("Next").setStyle("PRIMARY")),
  20. //ALSO CAN BE: new NextPageButton().setStyle(new MessageButton().setCustomId("next").setLabel("Next").setStyle("PRIMARY"))
  21. ]
  22. //Client flags. These are for guilds. For DMs needs `Intents.FLAGS.DIRECT_MESSAGES`.
  23. const client = new Client({intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES]});
  24. //Replace YOUR TOKEN with the token from Discord Developer Portal.
  25. client.login("YOUR TOKEN");
  26. //Ready!
  27. client.once("ready", async () => {
  28. console.log("ready");
  29. });
  30. //On message.
  31. client.on("messageCreate", async (message) => {
  32. if (message.content === "!pages")
  33. {
  34. const pagination = await new MessageReplyPagination() //Create pagination.
  35. .setButtons(buttons) //Pass buttons.
  36. .setEmbeds(embeds) //Pass embeds.
  37. .setTime(60000) //Set life-time to 60000.
  38. .send(message); //Send.
  39. };
  40. });