utw0 / discord.js-v14-template

discord.js-v14-mongolu-boş-altyapı

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

discord.js-v14-template mongolu

##Prefix Komut Taslak

const { EmbedBuilder } = require('discord.js');

module.exports = {
    config: {
        name: "", 
        description: "", 
        usage: "" 
    },
    permissions: "", 
    owner: false, 
    run: async (client, message, args, prefix, config) => {

        
    },
};

Slash Komut Taslak

const { EmbedBuilder } = require('discord.js');

module.exports = {
    name: "", 
    description: "", 
    type: 1, 
    options: [], 
    permissions: {
        DEFAULT_PERMISSIONS: "", 
        DEFAULT_MEMBER_PERMISSIONS: "" 
    },
    run: async (client, interaction, config) => {

    },
};

Contex Komut Taslak

const { EmbedBuilder } = require('discord.js');

module.exports = {
    name: "",
    type: 2, 
    run: async (client, interaction, config) => {


    },
};

Modal Komut Taslak

const { EmbedBuilder } = require("discord.js");

module.exports = {
    id: "", 
    run: async (client, interaction, config) => {



    },
};

Başlatma

Config.js Doldur
npm i
node .

About

discord.js-v14-mongolu-boş-altyapı


Languages

Language:JavaScript 100.0%