Toasty
Toasty
DIAdiscord.js - Imagine an app
Created by Toasty on 7/18/2023 in #djs-questions
Duplicating Embeds
Whenever I go to edit my embed they duplicate but the buttons that went to the other embed still control the top one.
6 replies
DIAdiscord.js - Imagine an app
Created by Toasty on 7/18/2023 in #djs-questions
How do I make a role system
When a user clicks on a button then a value on a embed field changes and then when the other button is pressed the other field changes. Once it detects that both of the field have been edited once it will send another message in chat
7 replies
DIAdiscord.js - Imagine an app
Created by Toasty on 7/18/2023 in #djs-questions
Detecting user select menus
It wont print whenever I run it.
15 replies
DIAdiscord.js - Imagine an app
Created by Toasty on 7/17/2023 in #djs-questions
Send welcome message in random channel when bot is invited!
js
client.on(Events.GuildCreate, g => {

const channel = g.channels.cache.find(channel => channel.type === 'text' && channel.permissionsFor(g.me).has('SEND_MESSAGES'))
channel.send( "Hey I'm Dank Memer" )

})
js
client.on(Events.GuildCreate, g => {

const channel = g.channels.cache.find(channel => channel.type === 'text' && channel.permissionsFor(g.me).has('SEND_MESSAGES'))
channel.send( "Hey I'm Dank Memer" )

})
24 replies