idiot can't figure out how a (ts) bot project should look like
I have attempted to create a bot with the creator however the project structure it produces varies widely from what is in the guide
15 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPexamples i found were also different so idk what to do at this point
Are you using create-discord-bot? If so, the code it produces and the guide don't match up, as they were written at two different times. There is internal discussion to update the guide, although I don't know the status of the changes. What's your current code, and what are you trying to do? Do you have a good grasp of JS and TS to begin with?
yes I did use
create-discord-bot
I'm trying to make a bot that will allow users to submit images for approval by mods
I have already setup an api, db and object storage for the images
aka i have everything needed around the bot
just need to make the bot itself
which i assumed would be easy as i have already made stuff like replugged plugins before
and i only need like 4-5 commandsThe guide is generally meant to help you understand the process of making a discord bot. The script differs because as mark said it was made at different times. What issues are you having with create-discord-bot?
You could look at the example ping command on the template and you can structure you other commands like that
i don't understand the project structure and how i should approach creating a command
Same goes for events and such
The general idea here would be to learn the concept of how slash commands work, then use that to copy and modify the ping command in the cdb template to have an attachment option
i have made half of the bot, realized that I'm doing it completely wrong and scrapped it
that does not use the commandbuilder and i wanted to use that cuz it seamed easier
You can use the builder if you want, then just use toJSON() at the end
so instead of doing this
I'd have to do this?
Yes
well
i'll attempt to do that and get back to you if i encounter any issues or succeed
this is the one thing i have from before i scrapped everything
it is very wrong
You need to export it as a default object, like you did for your example above
Also append .toJSON() at the end of the builder
got 1 kinda relevant question
how bad of an idea is storage of the bot settings in cloudflare kv storage
alright
how wrong is this
hopefully not at all