๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ


Bot/Discord Bot

(4)
[Discord.py] Bookmarks app_commands https://gihyeon.tistory.com/1 ๋””์Šค์ฝ”๋“œ ๋ด‡ [discord.py 2.0] ๊ธฐ๋ณธ ํŒŒ์ด์ฌ ๋ฒ„์ „ 3.8 ๋จผ์ € discord.py ์ตœ์‹  ๋ฒ„์ „์„ ์„ค์น˜ํ•ฉ๋‹ˆ๋‹ค. pip install -U git+https://github.com/Rapptz/discord.py ์„ค์น˜๊ฐ€ ๋๋‚˜์…จ์œผ๋ฉด ๋ด‡ ์‹คํ–‰ํŒŒ์ผ์„ ์ž‘์„ฑํ•ด ์ค๋‹ˆ๋‹ค. from discord import Intents from discor.. gihyeon.tistory.com select menu ์˜ต์…˜์ด .. 19๊ฐœ ๊นŒ์ง€๋งŒ ๋˜๋‚˜?ใ…  https://www.reddit.com/r/Discordjs/comments/sf00wb/options_limit_in_select_menu/ Options Limit in Select Menu He..
discord.js bot ๋งŒ๋“ค๊ธฐ (3) - Interactions INTERACTIONS Slash commands Registering slash commands https://discordjs.guide/interactions/slash-commands.html#registering-slash-commands discord.js Guide Imagine a guide... that explores the many possibilities for your discord.js bot. discordjs.guide Follow-ups ์—ฌ๋Ÿฌ๊ฐœ ์‘๋‹ต์„ ์›ํ•  ๊ฒฝ์šฐ ์‚ฌ์šฉ! ์ดˆ๊ธฐ ์‘๋‹ต ํ›„ interaction ํ† ํฐ์€ 15๋ถ„ ๋™์•ˆ ์œ ํšจํ•จ ephemeral: true -> command ์‹คํ–‰์ž๋งŒ ์‘๋‹ต ๋ฐ›๊ธฐ client.on('interactionCreate', async intera..
discord.js bot ๋งŒ๋“ค๊ธฐ (2) - Events Event handling const { Client, Intents } = require('discord.js'); const { token } = require('./config.json'); const client = new Client({ intents: [Intents.FLAGS.GUILDS] }); client.once('ready', c => { console.log(`Ready! Logged in as ${c.user.tag}`); }); client.on('interactionCreate', interaction => { console.log(`${interaction.user.tag} in #${interaction.channel.name} triggered an interaction...
discord.js bot ๋งŒ๋“ค๊ธฐ (1) Node.js ์„ค์น˜ํ•˜๊ณ  npm init https://thebook.io/080229/ ๋”๋ถ(TheBook): Node.js ๊ต๊ณผ์„œ ๊ฐœ์ • 2ํŒ thebook.io https://discordjs.guide/preparations/#installing-node-js discord.js Guide Imagine a guide... that explores the many possibilities for your discord.js bot. discordjs.guide discord.js ์„ค์น˜ npm install discord.js https://discordjs.guide/preparations/#opening-the-terminal discord.js Guide Imagine a guide... that..