koreanbots.bots.fetch("12345678901234567") .then(bot=> console.log(`${bot.name} 봇을 불러왔습니다!`)) .catch(err=> console.error(`다음 오류로 인해 봇을 불러오는 것에 실패 했습니다. ${err.stack}`))
example
koreanbots.bots.fetch("12345678901234567", { force: true }) .then(bot=> console.log(`캐시를 무시하고 ${bot.name} 봇을 불러온 후, 캐시에 저장 했습니다.`)) .catch(err=> console.error(`다음 오류로 인해 봇을 불러오는 것에 실패 했습니다. ${err.stack}`))
example
koreanbots.bots.fetch("12345678901234567", { cache: false, force: true }) .then(bot=> console.log(`캐시를 무시하고 ${bot.name} 봇을 불러왔으며, 캐시에 저장하지 않았습니다.`)) .catch(err=> console.error(`다음 오류로 인해 봇을 불러오는 것에 실패 했습니다. ${err.stack}`))
새로운 BotManager 인스턴스를 만듭니다.