discord.js 说命令帮助 meeee
Posted
技术标签:
【中文标题】discord.js 说命令帮助 meeee【英文标题】:discord.js say command help meeee 【发布时间】:2021-12-20 06:50:27 【问题描述】:所以我试图把它放在我的 replit discord bot 中的 .js 文件中,它不会启动,知道如何修复它吗?这就是我做其他事情的方式,但它包含前缀,我不希望前缀显示它,例如,当有人说你好时,我希望机器人向他说,例如你好。 enter image description here
client.on("message", async message =>
if (message.content.startsWith("ce faci"))
message.channel.send(uite ma scarpinam la coaie)
【问题讨论】:
您说客户端无法启动,您是否遇到任何错误?如果是这样,请在您的问题中编辑它们 idownvotedbecau.se/imageofcode 【参考方案1】:如果您还没有,请访问 Discord 开发者门户 (https://discord.com/developers/applications),单击“新建应用程序”,为其命名,然后转到屏幕左侧并单击“Bot”,然后按“添加机器人”按钮,然后按“是的,做吧!”到弹出窗口。应该有一个已生成的令牌。复制下来,放到下面的代码模板中。
// Import discord.js and create the client
const Discord = require('discord.js')
const client = new Discord.Client();
// Register an event so that when the bot is ready, it will log a messsage to the terminal
client.on('ready', () =>
console.log(`Logged in as $client.user.tag!`);
)
// Register an event to handle incoming messages
client.on('message', async msg =>
// Check if the message starts with '!hello' and respond with 'world!' if it does.
if(msg.content.startsWith("!hello"))
msg.reply("world!")
)
// client.login logs the bot in and sets it up for use. You'll enter your token here.
client.login('your_token_here');
使用指南可能会有所帮助,您会在 YouTube 上找到大量指南,这些指南教您使用 Discord.js 的基础知识。
如果这是您第一次使用 javascript 编码或一般编码,我建议您访问 Codecademy、freeCodeCamp、可汗学院、YouTube、W3Schools 等网站来学习基础知识。
【讨论】:
以上是关于discord.js 说命令帮助 meeee的主要内容,如果未能解决你的问题,请参考以下文章