GatoVuelta / RestoreCord-Source-Code

Source code for the member backup RestoreCord, found at restorecord.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RestoreCord Source Code

Tutorial video how to host for 100% free forever: https://www.youtube.com/watch?v=804Fzc5j4vo

Source code for the member backup bot RestoreCord, found at restorecord.com

I founded RestoreCord sometime in April 2020, I forget the exact date. I then sold to @xenos1337 in January 2022. RestoreCord was the first ever restore bot! Now there's more than a dozen 😆

@xenos1337 made some mistakes in June 2022 resulting in the bot getting banned from Discord. I then released this source code since RestoreCord.com no longer uses it anymore due to them changing to a Node.js source code with a custom bot for each user, so a mass ban couldn't occur again.

This source is completely functional. It just doesn't have as many features as the latest RestoreCord, but it serves as a great example to anyone who's interested in these types of bots.

RestoreCord, the live website can be trusted fine now. They're not going to have another mass ban problem. I have inspected it closely and it follows all of my suggestions (rotating proxy, optional custom domain, etc) just follow the RestoreCord Documentation if you use the live site and you'll have no issues.

Copyright License

The code can be used for commercial use if you would like. The requirements are that you must open-source the code and link to this repository in order to not be in violation of the GNU General Public License v2.0

Features

  • 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

How to setup

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

Now for c# part

Note that this is written for Debian 11. For any other distro this is self explanatory. If you can't figure this out then leave.

wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-5.0 dotnet-runtime-5.0

For this next part make sure you are in the bot's root directory.

dotnet restore
dotnet build

You now have an executable!

Create a service using systemctl, make sure to replace the paths.

[Unit]
Description=Nebula Mods Inc. Restorecord
After=multi-user.target
[Service]
WorkingDirectory=/path/to/working/directory
ExecStart=/path/to/bot/executable 
SyslogIdentifier=Restorecord
Type=idle
Restart=always
RestartSec=15
RestartPreventExitStatus=0
[Install]
WantedBy=multi-user.target

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'

Old source

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.

About

Source code for the member backup RestoreCord, found at restorecord.com

License:GNU General Public License v2.0


Languages

Language:CSS 88.1%Language:PHP 10.4%Language:C# 1.3%Language:Hack 0.2%