MrAxeman6
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
just tried it and that work thx
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
i am using the js template and when i run the deploy command it says "
[email protected] deploy node --require dotenv/config src/util/deploy.jsSuccessfully registered 1 commands." and the start command gives"
[email protected] start node --require dotenv/config src/index.jsReady! Logged in as AxeBot#6472
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
said succesfully registired but then still didnt show up
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
yes
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
they do not show on discord
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
no
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
but i get no errors
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 12/3/2023 in #djs-questions
discord bot template
i used that one it starts the bot but the commands dont work
17 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
also it is having an eoor with the word guilds
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
dcnotifacation is the function i am trying to make i go in
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
this is the way i have the code
dcclient.login(process.env.BOT_TOKEN)
dcnotifacation('1150042953012740148', "ONLINE: ATF Tracking System")
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
but it is doing it befor
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
after
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
no
13 replies
DIAdiscord.js - Imagine an app
•Created by MrAxeman6 on 9/9/2023 in #djs-questions
discord.js message in a function
this is the function at the minute and it says that the channel cant be found:
function dcnotifacation(channelId, msg){
// Find the channel by its ID
const guild = dcclient.guilds.cache.first(); // Get the first guild (server) the bot is in
const channel = guild.channels.cache.get(channelId);
if (!channel) {
console.error('Channel not found');
return; // Exit the function early
}
// Send the message to the channel
channel.send(msg)
.then(() => {
console.log('Message sent successfully');
})
.catch(error => {
console.error('Error sending message:', error);
});
13 replies