¿Es posible obtener el ID personalizado de interacciónCrear para los botones?
client.on("interactionCreate", interaction => { if (interaction.isButton()) { // I want to get the CustomId of the button that was pressed here. } })Se puede cambiar a esto y se puede obtener
client.on("interactionCreate", interaction => { if (interaction.isButton()) { const btn_id = interaction.customId; //btn_id = your button id } })Mediante el uso de .customId
client.on("interactionCreate", interaction => { if (interaction.isButton()) { // interaction.customId; } })