macha
macha
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
yeah it works now thanks a lot i remove the clearing part
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
Thanks a lot ill wait for a few hours and try again
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
Aaa, I realised now
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
here
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
const { REST, Routes } = require('discord.js');
const { clientId, guildId, token } = require('./config.json');
const fs = require('node:fs');
const path = require('node:path');
const { REST, Routes } = require('discord.js');
const { clientId, guildId, token } = require('./config.json');
const fs = require('node:fs');
const path = require('node:path');
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
i have imported imported it using require function.
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
i have not
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
elaborate a little pls
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Issue with Discord.js command deployment script
yeah but the process doesn't finish or show the final success message and terminate after it, meaning it should show: Successfully reloaded (11) application (/) commands and terminate after it
19 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Slash Command - Webhook Avatar Not Setting Correctly to User's Avatar
it works now
6 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Slash Command - Webhook Avatar Not Setting Correctly to User's Avatar
i just change avatarURL() to interaction.user.avatarURL()
6 replies
DIAdiscord.js - Imagine an app
Created by macha on 7/20/2023 in #djs-questions
Slash Command - Webhook Avatar Not Setting Correctly to User's Avatar
hello thank you for your response i changed what u suggested:
const user = interaction.user;
const { username, avatarURL } = user;


const webhook = await interaction.channel.createWebhook({
name: username,
avatar: avatarURL,
});
const user = interaction.user;
const { username, avatarURL } = user;


const webhook = await interaction.channel.createWebhook({
name: username,
avatar: avatarURL,
});
but it still does not give me the avatar
6 replies