我对制作 discord 机器人相当陌生,我正在制作 !serverinfo 命令。我遇到的问题是无法获取频道和角色,并且角色无法点击(彩色)
答案 0 :(得分:1)
您可以使用 <Guild>.roles.cache
或 <Guild>.channels.cache
返回相应的经理。将 <Guild>
替换为您的公会对象,您很可能会使用 <Message>.guild
示例
message.guild.channels.cache
// Will return Collection [Map] of all the guild's channels
message.guild.roles.cache
// Will return Collection [Map] of all the guild's roles