Buttons Expiring
My buttons expire. I use interaction event to make them permanent but it does not work.
48 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPHere is my code and what i mean by expiring is that they do not work after restart. No errors. no anything in console.
Any errors?
Nope.
Just they expire when I turn off the bot.
Also, I have a few issues with this code.
You have multiple
client.on()
for the Events.InteractionCreate
event, you should only have 1. Use if checks inside the event to figure what each button doesAlright how do I configure my code to make it like this.
This won't solve the issue, but it will make it better:
Secondly, does your bot just not reply, or does it not do anything?
Like does it create a channel?
It makes the channel in the specific category it works perfectly fine.
It just doesn't stay on after the bot restarts.
Meaning if you restart the bot and press the button, it just says Interaction Failed?
Yes.
And bot doesn't do anything else as well, is what I understand
but if I keep the bot on from the start it works.
So. I type in ping to make it send the message. It sends and I can use all the buttons.
How fast do you press the button after the bot restarts?
Because it might be possible that the bot is still booting up
I try it like 10 times it doesn't work.
Nope. It says it boots up and stuff.
It just doesn't stay.
Show me your intents
These?
Yeah, intents seem fine
Where did you initially have the collectors?
wdym by that?
Can you show me the code where you used collectors before switching to interaction event
I do not have it anymore.
All I have is this.
Do you have the code where you send all the buttons?
This is all the code for the buttons?
Nevermind ignore me
Alright.
I'm stumped, I can't seem to find why it does that
hm
@Crocodile, for the
const member = interaction.guild.members.cache.get(interaction.user.id);
Change it to
const member = interaction.member
done
lemme try
It still doesn't work after restart.
Here
Heres a preview. All the buttons work but then when I restart my bot I get the This Interaction Failed.
That is extremely odd. Just want to confirm, you did save all the files right?
Yes.
Okay I figured the issue
You need to seperate your MessageCreate event and InteractionCreate completely, currently you're nesting them, meaning they only start listening to event once you use the command
How do I do this?
And what all would I put in message create?
Your command
I don't use a command?
I use ping
Yeah that's essentially a command
Meaning if someone says "ping" in chat the embed will summon
oh alr
so only this?
Everything below it as well before
client.on
So like this? https://sourceb.in/ChRrePr59g
SourceBin
The code for the button
Yes
This line
Yea change it to interaction.guild
bro thank you so much
it finally works.