An advanced bot for Discord and I want to eventually mimic it for whats app

Its totally going to disrupt the real estate market, again assuming Im able to get it to do what Im after. Locating and obtaining API's apparently there are a lot of errors in my code and its chaotic according to a pro Discord bot dev. this is from our deploy-commands.js file
const { REST, Routes, SlashCommandBuilder } = require('discord.js');
const dotenv = require('dotenv');
dotenv.config();

// --- Financing and Mortgage Calculations ---
const financingCommands = [
new SlashCommandBuilder()
.setName('mortgage')
.setDescription('Calculate monthly mortgage payment')
.addNumberOption(option =>
option.setName('principal')
.setDescription('Loan Principal')
.setRequired(true))
.addNumberOption(option =>
option.setName('annual-rate')
.setDescription('Annual Interest Rate (%)')
.setRequired(true))
.addIntegerOption(option =>
option.setName('loan-term')
.setDescription('Loan Term (years)')
.setRequired(true)),
new SlashCommandBuilder()
const { REST, Routes, SlashCommandBuilder } = require('discord.js');
const dotenv = require('dotenv');
dotenv.config();

// --- Financing and Mortgage Calculations ---
const financingCommands = [
new SlashCommandBuilder()
.setName('mortgage')
.setDescription('Calculate monthly mortgage payment')
.addNumberOption(option =>
option.setName('principal')
.setDescription('Loan Principal')
.setRequired(true))
.addNumberOption(option =>
option.setName('annual-rate')
.setDescription('Annual Interest Rate (%)')
.setRequired(true))
.addIntegerOption(option =>
option.setName('loan-term')
.setDescription('Loan Term (years)')
.setRequired(true)),
new SlashCommandBuilder()
And this is from our index.js file.
const { Client, GatewayIntentBits, EmbedBuilder } = require('discord.js');
const dotenv = require('dotenv');
dotenv.config();

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.once('ready', () => {
console.log('Bot is online!');
});

// Helper function for formatting currency
function formatCurrency(value) {
return **$${parseFloat(value).toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}**;
}

// Helper function for formatting percentages
function formatPercentage(value) {
return **${parseFloat(value).toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}%**;
}
const { Client, GatewayIntentBits, EmbedBuilder } = require('discord.js');
const dotenv = require('dotenv');
dotenv.config();

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.once('ready', () => {
console.log('Bot is online!');
});

// Helper function for formatting currency
function formatCurrency(value) {
return **$${parseFloat(value).toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}**;
}

// Helper function for formatting percentages
function formatPercentage(value) {
return **${parseFloat(value).toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}%**;
}
13 Replies
d.js toolkit
d.js toolkit3w ago
- 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 OP
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
rishsane
rishsaneOP3w ago
npm: '10.9.2',
node: '22.14.0',
acorn: '8.14.0',
ada: '2.9.2',
amaro: '0.3.0',
ares: '1.34.4',
brotli: '1.1.0',
cjs_module_lexer: '1.4.1',
cldr: '46.0',
icu: '76.1',
llhttp: '9.2.1',
modules: '127',
napi: '10',
nbytes: '0.1.1',
ncrypto: '0.0.1',
nghttp2: '1.64.0',
nghttp3: '1.6.0',
ngtcp2: '1.10.0',
openssl: '3.0.15+quic',
simdjson: '3.10.1',
simdutf: '6.0.3',
sqlite: '3.47.2',
tz: '2024b',
undici: '6.21.1',
unicode: '16.0',
uv: '1.49.2',
uvwasi: '0.0.21',
v8: '12.4.254.21-node.22',
zlib: '1.3.0.1-motley-82a5fec'
npm: '10.9.2',
node: '22.14.0',
acorn: '8.14.0',
ada: '2.9.2',
amaro: '0.3.0',
ares: '1.34.4',
brotli: '1.1.0',
cjs_module_lexer: '1.4.1',
cldr: '46.0',
icu: '76.1',
llhttp: '9.2.1',
modules: '127',
napi: '10',
nbytes: '0.1.1',
ncrypto: '0.0.1',
nghttp2: '1.64.0',
nghttp3: '1.6.0',
ngtcp2: '1.10.0',
openssl: '3.0.15+quic',
simdjson: '3.10.1',
simdutf: '6.0.3',
sqlite: '3.47.2',
tz: '2024b',
undici: '6.21.1',
unicode: '16.0',
uv: '1.49.2',
uvwasi: '0.0.21',
v8: '12.4.254.21-node.22',
zlib: '1.3.0.1-motley-82a5fec'
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
rishsane
rishsaneOP3w ago
PS C:\Users\richa> npm list discord.js [email protected] C:\Users\richa `-- (empty)
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
rishsane
rishsaneOP3w ago
How?
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
rishsane
rishsaneOP3w ago
Oh I see.
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
rishsane
rishsaneOP3w ago
So one of the issues is when I type/help its supposed to show a lits of the commands and what the intent is. I have 42 including the help one. But when I type /help it just thinks about it infinitley because discord limits to 25 items per embed. So I tried to categorize them and then it couldnt even detect the help command let alone others.
Unknown User
Unknown User3w ago
Message Not Public
Sign In & Join Server To View
Samtino
Samtino3w ago
npm list discord.js has to be run in the root directory of your project (where your package.json is)

Did you find this page helpful?