Second image

This is the file for the button command and this is where I am trying to retreive the variables from.
mail@pastecode.io avatar
unknown
javascript
2 years ago
572 B
1
Indexable
Never
const { MessageEmbed, MessageActionRow, MessageButton, EmbedBuilder, ButtonBuilder, SelectMenuBuilder, ActionRowBuilder, EmbedAssertions } = require('discord.js');
const { sequelize, log_settings } = require('../../../../../bot')
const Sequelize = require('sequelize');
const { userid, embeds, pages, getRow} = require('../../../SlashCommands/Developer Only/Utility/guildList')
module.exports = {
    name : 'next_page',
    run: async (client, interaction, container) => {
        interaction.reply(`User ID: ${userid}\nEmbeds:${embeds}\nPages:${pages}`)
    }
}