Selling an Advanced Discord bot Designed to handle Multiple Servers { Images & Info Below }

Status
This thread has been locked.

RonCoder0020

Feedback score
1
Posts
14
Reactions
3
Resources
0
Heya!
So, I was working on an advanced discord bot but I am leaving the project as my first account got hacked and I no longer want to work on this bot so, I would like to sell this bot. If you are interested, here is the information ~

BOT LIBRARY + DATABASE USED
I used Discord.js and for the database, I have used MongoDB (mongoose)

BOT FEATURES
  • Moderation -> ban, configuration, createrole (same as Dyno bot), kick, lock, unlock, massban, mute, purge, role (same as Dyno), say, unban, unmute, warn, removewarn, warnings
  • Configuration -> Welcome message, Welcome channel, Welcome module, Levelup message, Levelup message module, Levelupmessage redirect, Level module, set prefix, set xp, blacklist channel, whitelist channel
  • Economy -> Balance, daily, inventory, sell, buy, shop
  • Fun -> 8ball, advice, anime, animeimage, cat, dog, love, meme, ship (Advanced Image manipulation), topic, wouldyourather, zodiac
  • Games -> akinator, imposter (among us game in chat.), numberguess
  • Info -> botinfo, help, invite, ping, roleinfo, serverinfo, whois
  • Levels -> leaderboard, rank, rankcard (supports changing of progress bar color, text color, background color/image)
  • Social -> acceptrequest, divorce, marry, profile, reputation, viewrequests, wallpapers
  • Utility -> afk, avatar, urban, wikipedia
  • Actions -> hug, kiss, pat, slap (GIF is stored in json file, 20 gif each action)
The bot has more than 75 files. Profile command has sub commands such as set about, set title, set background, set color.
Contact me to test the bot out.

If you are interested in purchasing this bot, feel free to add me as a friend in Discord :
My discord user tag ->
♡ Rem ♡#2135

You can also join this server here to test the bot -> https://discord.gg/8wedkrkjZt
This is a new server I just created only for this bot testing. My previous account had a Verified Bot Developer badge but the account is hacked and I lost access to it now.

Images :
Profile-
IMG_20210416_114931.jpg


Rank -
IMG_20210416_114956.jpg

IMG_20210416_115015.jpg

Ship -
IMG_20210416_115123.jpg

Anime search and Image -
Screenshot_2021-04-16-11-50-22-935_com.discord.png

IMG_20210416_115054.jpg

IMG_20210416_115108.jpg
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Function

Minecraft Plugin Developer
Supreme
Feedback score
38
Posts
936
Reactions
333
Resources
0
Code snippets?
 

RonCoder0020

Feedback score
1
Posts
14
Reactions
3
Resources
0
Code snippets?
here is the balance command code~
Code:
const Discord = require("discord.js");
const User = require("../../models/user.js");

module.exports = {
    name: "balance",
    aliases: ["bal"],
    category: "Economy",
    description: "Check your or another user's balance! How many spirits do a user have??",
    example: "balance @Ronak#8948",
    usage: "[@user]",
    cooldown: 5,
    run: async (client, message, args) => {
        const target = message.mentions.users.first() || message.author;
        User.findOne({
            userID: target.id
        }, async (err, user) => {
            if (err) console.log(err);
            if (!user) return message.channel.send("Seems like the user has not started using me yet ;-; They got no spirits in their crate.");
            const embed = new Discord.MessageEmbed()
                .setTitle("Spirits Crate!")
                .setColor("#f56cf6")
                .setFooter(message.author.username, message.author.displayAvatarURL())
                .setTimestamp()
                .setDescription(`Balance for **${target.username}**\n<:spirits:814860320828817408> - ${user.coins.toLocaleString()} Spirits\n<:legendaryspirits:814860322460532776> - ${user.gems.toLocaleString()} Legendary Spirits`)
                .setThumbnail(target.avatarURL())
            message.channel.send(embed)
        })
    }
}
[DOUBLEPOST=1618415840][/DOUBLEPOST]
Seems like a dyno knock off wouldnt pay much for.
Hmm? What do you mean?
Well, i created dyno like create role and role commands cuz it was pogg in dyno xD (although the role cmd is not completely same)[DOUBLEPOST=1618416737][/DOUBLEPOST]Btw, the social cmds like marry cmd is made so that we can also track previous married details + can have multi marriage request + yo can also add cmd of adding as friends. The database structure is already setup in that way.
I had big plans for this bot but i had to quit it sadly~
 
Last edited:

RonCoder0020

Feedback score
1
Posts
14
Reactions
3
Resources
0
Do I need a MongoDB cluster to use the bot?

Yes. Because the prefix is also in thr database and many other commands work by using the database. So you will need mongoDB cluster to use the bot.
But for testing in the server i provided link above, the bot is already online 24/7 till someone purchases it from me.
 
Last edited:
Status
This thread has been locked.
Top