Samtino
DIAdiscord.js - Imagine an app
•Created by wvn on 4/2/2025 in #djs-questions
Learn d.js
The create-discord-bot template also has a good starting point. But parts of it can be pretty complicated, so if you don't know TS very well, it could be difficult to work with
10 replies
DIAdiscord.js - Imagine an app
•Created by rishsane on 3/17/2025 in #djs-questions
An advanced bot for Discord and I want to eventually mimic it for whats app
npm list discord.js
has to be run in the root directory of your project (where your package.json is)16 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
I am not...those translations were made using Copilot....so I don't know for sure if that's correct in any way
21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
You're going to have to redeploy the commands for that server at some point. Avoiding that is impossible if you want to avoid using the built in
locales
settings and instead replace the commands entirely with a different language
I don't know the exact code to do this as I haven't personally done anything with translations, but the snippets you sent aren't inherently problematic. But the exact process to use i18n is something I haven't done before..
But I want to cycle back around...why do you not want to use locales, as they avoid this entire process since you can add all of the translations for the command ahead of time, and then each user can see in their own native language
21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
But again. A "deployCommands" function/script should NEVER be run automatically. It should always be triggered either by you or someone intentionally doing so.
You should be the only one who can update ALL servers, and server admins should be able to update theirs
21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
On your backend, you can fetch the locale from your redis DB with the interaction.guild.id and respond with the corresponding language. But with the /set-language command, you can change the language of the command itself. If set up correctly, you shouldn't even have to change your command handling in any way. The "backend" of the interaction should run identically
21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
You should:
1. Only redeploy the commands by manually triggering a script (like
npm run deploy
) whenever you push a new version of the bot to prod
2. Add a /set-language (language)
or similar command for server admins to use (should be on a cooldown to avoid rate limiting)21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
And I was just about to say that. Your command list should only change either when you as the developer add or modify a command (thus needing to redeploy on all servers), or if a server admin changes the language of their server.
Checking and redeploying the commands every single time a command is used is just bad design on your part. You're likely doing something wrong in your command flow
21 replies
DIAdiscord.js - Imagine an app
•Created by Tercan on 3/15/2025 in #djs-questions
Multi language Bot
Instead of setting a language for an entire server, you can just add locales to your commands and responses so it responds in the language of the user (if available)
21 replies
DIAdiscord.js - Imagine an app
•Created by Sincerely, alxx ᴬᴳ on 3/9/2025 in #djs-questions
Logs not working
For testing, it can be easiest to just give your bot Administrator permissions (but this isn't recommended for production use, as giving a bot administrator permissions is a security risk, as if your token was ever to be compromised, your application would have unrestricted access to perform any action in your server)
13 replies
DIAdiscord.js - Imagine an app
•Created by Sincerely, alxx ᴬᴳ on 3/9/2025 in #djs-questions
Logs not working
What intents does your client have? And what permissions does it have in the server you are testing in?
13 replies
DIAdiscord.js - Imagine an app
•Created by Sincerely, alxx ᴬᴳ on 3/9/2025 in #djs-questions
Logs not working
For example, to debug your
MessageDelete
event, you should change the return to have a console.log
saying you returned early and another one at the end saying it completed. And purely for debugging, you can also split any if-or's into seprate if checks so you can see which one are or aren't triggering. So you could do something like this
13 replies
DIAdiscord.js - Imagine an app
•Created by Sincerely, alxx ᴬᴳ on 3/9/2025 in #djs-questions
Logs not working
Well first thing, you have 29 different
client.on()
events in in this file, and 18 of those are for Events.GuildAuditLogEntryCreate
It is recommended that you only have 1 of each event. You should refactor this with a single Events.GuildAuditLogEntryCreate
and then identify which type it is and format it.
This is also a 700 line file with a lot going on and almost no console.log
's, so I would recommend going 1 by 1 to see which one's in particular aren't working. Which one in particular are you having issues with? (also note, that audit logs aren't always real time, they can sometimes take a couple seconds to create after the event triggering them happens to be made)13 replies
DIAdiscord.js - Imagine an app
•Created by Sincerely, alxx ᴬᴳ on 3/9/2025 in #djs-questions
Logs not working
Also make sure to answer the questions above @Sincerely, alxx ᴬᴳ
13 replies
SMSatisfactory Modding
•Created by Samtino on 1/7/2025 in #help-using-mods
sftp connection failed
is it possible theres an issue with my sshd_config? i can list that here if it helps, like i said initially, i am not too experienced in setting up a linux environment
11 replies
SMSatisfactory Modding
•Created by Samtino on 1/7/2025 in #help-using-mods
sftp connection failed
on simple mode, i can't even click add as the spinning circle under the path never goes away
as for advanced mod i get this:
11 replies
SMSatisfactory Modding
•Created by Samtino on 1/7/2025 in #help-using-mods
sftp connection failed
Ok, confirmed it was not that. It doesn't work on SFTP either
11 replies