Tecrubeli Armut
Tecrubeli Armut
DIAdiscord.js - Imagine an app
Created by Tecrubeli Armut on 6/24/2023 in #djs-questions
commands
Thank you for your help
10 replies
DIAdiscord.js - Imagine an app
Created by Tecrubeli Armut on 6/24/2023 in #djs-questions
commands
Yeah
10 replies
DIAdiscord.js - Imagine an app
Created by Tecrubeli Armut on 6/24/2023 in #djs-questions
commands
@oscartwo is this good then?
10 replies
DIAdiscord.js - Imagine an app
Created by Tecrubeli Armut on 6/24/2023 in #djs-questions
commands
Index.js:
const { sendPong } = require('./sendPong.js');
sendPong();
}
const { sendPong } = require('./sendPong.js');
sendPong();
}
module.exports = { sendPong } sendPong.js:
client.on('messageCreate', (message) => {
if (message.content === "ping") {
message.channel.send("pong")
}
client.on('messageCreate', (message) => {
if (message.content === "ping") {
message.channel.send("pong")
}
10 replies