rishsane
rishsane
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
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 })}%**;
}
16 replies