wacuus
wacuus
DIAdiscord.js - Imagine an app
Created by wacuus on 1/5/2025 in #djs-questions
Why am i have something like this
what does it mean
9 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/5/2025 in #djs-questions
Why am i have something like this
No description
9 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/5/2025 in #djs-questions
Why am i have something like this
another server
9 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/5/2025 in #djs-questions
Why am i have something like this
No description
9 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/5/2025 in #djs-questions
Why am i have something like this
It's just a link to a profile on Instagram, and when I click it on another server, it works normally.
9 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/4/2025 in #djs-questions
My embed doenst work #embeds
The problem has been solved. If someone has the same issue, in the export module, name must be the same as in usage. You need to emphasize that because they are variables. So if in name you had embedRegulamin and in usage you had embed, then name must also be exactly embed, as should the file name.
15 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/4/2025 in #djs-questions
My embed doenst work #embeds
i have just installed to v14 and restared pc, and im tottally new in discord.js so imsry
15 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/4/2025 in #djs-questions
My embed doenst work #embeds
15 replies
DIAdiscord.js - Imagine an app
Created by wacuus on 1/4/2025 in #djs-questions
My embed doenst work #embeds
Embed file:
const { EmbedBuilder } = require('discord.js');

module.exports = {
name: 'embed_regulamin',
description: "Regulamin Serwera",
usage: '!embed',
execute: async (message, args) => {
const embed_regulamin = new EmbedBuilder()
.setTitle('Regulamin serwera svcut.pl')
.setDescription('Przykładowy regulamin')
.setColor(0x00AE86);

message.channel.send({ embeds: [embed_regulamin] });
},
};
const { EmbedBuilder } = require('discord.js');

module.exports = {
name: 'embed_regulamin',
description: "Regulamin Serwera",
usage: '!embed',
execute: async (message, args) => {
const embed_regulamin = new EmbedBuilder()
.setTitle('Regulamin serwera svcut.pl')
.setDescription('Przykładowy regulamin')
.setColor(0x00AE86);

message.channel.send({ embeds: [embed_regulamin] });
},
};
15 replies