Source code for the member backup bot RestoreCord, found at restorecord.com
I am the legal owner of this source code. I paid a developer for this source code. While I gave the new owner of RestoreCord this code when I sold it to him, I did NOT relinquish copyrights to him. Any false DMCA will be counterstriked and I will pursue legal action if I'm able to find the copyright troll's address.
The license allows you to use this source code and sell it, meaning you can create a competitor to RestoreCord if you wanted to. The only requirement is that you open-source your version of the code. If you do not do that, your website will be taken down for copyright infringement. Pretty simple license, I feel it's more than fair that you contribute back to the community given that I've contributed back the community.
Reasoning: Since January 2022 I've no longer been selling member restore bots. I founded RestoreCord in 2020 and sold it then. Unfortunately, I sold it to an individual who goes by the monikers "xenos" or "ytmcgamer". It was later revealed this individual has token logged people. Video of him admitting it: https://www.youtube.com/watch?v=8dVNMcUR00A
He claimed he did it 2 years ago, though there was an incident where he Mass DM spammed the Discord server of a competitor restore bot service named Guild Restore. The developer for Guild Restore, Gannicus, showed a screenshot from a user where the user said his account was hacked.
RestoreCord was banned late April 2022 due to messages in their server from users which explained how they evaded Discord ToS with RestoreCord. I notified xenos of these messages and suggested that he delete them. He didn't take action on the messages and all RestoreCord assets were later banned. RestoreCord now intends to come back with "custom bots", where each server has its own bot. Given that Discord has clearly expressed they don't want RestoreCord on their platform by banning multiple accounts and servers, it is illegal for Discord to bypass this technological ban. So we could see RestoreCord facing legal action, and depending on where the person behind the moniker "xenos" lives, we could see that person facing criminal charges if that jurisdiction makes it illegal. It is criminally illegal in the United States to do what RestoreCord plans to do with the custom bots, after being banned by Discord multiple times.
So, for all these reasons I suggest you stay the hell away from RestoreCord. they're very shady and I am very sorry to have sold to such a dissolute individual. I recommend you check out https://letoa.me, they have automatic server backups and are as cheap as RestoreCord - $10/year
- Multi server
- Restore members (nothing else, this was one of the early versions of RestoreCord)
- IP logging
- Discord webhook notifications
- Handles rate limiting and access token expiry. Most bots don't and break when you try to pull members, not RestoreCord
- VPN block
- IP blacklisting
PHP and MySQL. Should work on most PHP versions. I tested on PHP 7.4 and PHP 8.0, worked on both. You must have a VPS. Shared hosting such as NameCheap will not work, as you have to run c# application also
Please setup your MySQL database now and import the structure from here https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/restorecord_db_schema.sql
- Change the
restorecord.com
at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L22 toexample.com
(where example.com) is your website's domain - Replace
botTokenHere
with your Discord bot token https://github.com/wnelson03/RestoreCord-Source-Code/blob/e6c846f6941062dede12d893a9800cda801d1c58/website%20source/verify/index.php#L84 and https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L274, make sure you keep the space betweenBot
and your token. i.e.Bot theTokenHere
- (optional - only needed if you do NOT use cloudflare) change
HTTP_CF_CONNECTING_IP
toREMOTE_ADDR
(do NOT do this if you're using cloudflare) at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L91, https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L99, https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L140, and https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L316 - (optional - only needed if you have more than 1,000 people verify a day) change
proxyCheckKeyHere
to a proxycheck API key if you have so many users you need to pay at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L102 - Change OAuth2 authorization link at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/verify/index.php#L448 you get your authorization link from Discord developer portal, like this https://imgur.com/a/G3q4oDM
- Change captcha keys here https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/register/index.php#L38 and https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/register/index.php#L101 or remove the captcha. I don't recommend removing captcha if you plan to sell this. Captcha is very neccesary for public websites. But if it's not a commercial site, you should remove lines 100-109 and then register will work
- Set MySQL connection info at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/includes/connection.php
- If you have other users than yourself owning servers on this source and you want to log their actions, replace `` with your webhook url on https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/dashboard/account/settings/index.php#L445, https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/dashboard/account/settings/index.php#L499, https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/dashboard/server/settings/index.php#L603, and https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/login/index.php#L155
- If you plan to sell this source, replace
8hCOmd6
with your Shoppy.GG product ID https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/dashboard/account/upgrade/index.php#L240 and then on Shoppy.GG, set these settings for the product https://imgur.com/a/XkRC3Pe and then make sure you set your Shoppy.GG webhook secret at https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/api/upgrade/index.php#L6 - Replace
discordBotIdHere
with your Discord bot's application ID - Replace
discordClientSecretHere
with your Discord bot's client secret https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/auth/index.php#L21 - Replace
https://restorecord.com/auth/
withhttps://example.com/auth/
and use your website's domain instead ofexample.com
https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/auth/index.php#L22 - Replace
https://restorecord.com/verify/
withhttps://example.com/verify/
and use your website's domain instead ofexample.com
https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/website%20source/auth/index.php#L30
Now for c# part
- Change
https://restorecord.com/auth/
tohttps://example.com/verify/
and use your website's domain instead ofexample.com
https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Commands/Pull.cs#L113 - (important, you don't want Discord to think you're a bot RestoreCord owns and ban you) Change
RestoreCord (public release, 1.0.0.0)
to the name of your site or something https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Miscellaneous/Utilities.cs#L38 - Replace
rest_admin
with database username, replacerest_main
with database password https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Services/Database.cs#L8 - Replace
databasePasswordHere
with database password https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Properties/Resources.resx#L127 - Replace
clientSecretHere
your Discord bot's client secret https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Properties/Resources.resx#L124 - Replace
discordIdHere
with your Discord bot's application ID https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Properties/Resources.resx#L121 - Replace
botTokenHere
with your Discord bot's token https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/bot%20source/RestoreCord/Properties/Resources.resx#L139
The developer I paid then compiles it to a linux appimage somehow
Then the developer said run these commands
dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
apt-get update && apt-get upgrade -y
apt-get install dotnet-runtime-5.0 -y
Then he said make a process like this and enable it and start it with systemctl
[Unit]
Description=Nebula Mods Inc. API Bot
After=multi-user.target
[Service]
WorkingDirectory=/var/nebula-mods-inc/bots/discord/api
ExecStart=/var/nebula-mods-inc/bots/discord/api/Network-Bot
SyslogIdentifier=API-Bot
Type=idle
Restart=always
RestartSec=15
RestartPreventExitStatus=0
[Install]
WantedBy=multi-user.target
I'm not too sure so I'm not being super descriptive maybe. Though I'm sure you can figure out and get it running. Make sure you run it on the same server as the PHP and the MySQL database as that's far quicker.
Once you set this up, the bot should come online and slash commands should work, do /
and you'll see slash commands
Here's a YouTube video showing how to use the bot https://www.youtube.com/watch?v=dVWPEdJY0zA
How to give yourself lifetime premium (replace yourUsernameHere
with your username):
UPDATE `users` SET `role` = 'premium',`expiry` = 2224663363 WHERE `username` = 'yourUsernameHere'
Don't care, not fixing. This is not my issue anymore, I'm simply releasing for whoever wants it.
I paid a different developer for a bot source before the current c# one and it was a shitshow. I paid this developer who went by "Missy", "Steer", or "Vultrex Development". This is a node.js react source and it's shit. For example, when someone redeems a premium key it deletes that premium key, and all the other premium keys in the array. If you delete a user, it deletes that user and all the rest of the items in the array. This is easy to fix and I've done it before, though I deleted that source when I switched to this one. Maybe some of it will be of use to you, so I'm making it open too. Aside from those minor bugs, it works completely fine. It handles rate limiting and access token expiration. Download it here https://github.com/wnelson03/RestoreCord-Source-Code/blob/main/old_source.zip, no instructions for it, you must inspect yourself. I didn't save instructions and I'm not familiar with it, so that's up to you.