한번에 많은 명령어를 도배하듯이 사용한다면 봇이 버티기 힘들수있습니다. 그래서 setTimeout() 함수를 사용하여 간단한 쿨타임을 만들겠습니다! 전역 범위 코드 client.cooldowns = new Collection(); client.COOLDOWN_SECONDS = 1; 쿨타임 적용 코드 Client.on(Event.IntractionCreate, (interaction) => { if (!interaction.isChatInputCommand()) return; const command = interaction.client.commands.get(interaction.commandName); if (!command) { console.error(`명령어 [ ${interaction.comma..