You can add the main instance to your user or server via the Invite URL
If you feel like making your own instance, here is a small guide on setting it up.
- Create a Cloudflare account if you do not already have one
- Install GIT if you do not already have it installed.
- Install Node if you do not already have it installed.
- Navigate to https://discord.com/developers/applications
- Create a new application
- Save the
PUBLIC KEY
andAPPLICATION ID
somewhere safe, you will need it later. - Go to the "Installation" menu and enable both "Guild Install" and "User Install" if you'd like for it to be invitable.
- Go to the "Bot" menu and save the
TOKEN
somewhere safe, as you will need it later.
- Run the command
git clone https://github.com/User9684/user-utils.git
in any directory, and then runcd user-utils
. - Run the command
npm i
- Clone the
wrangler.example.toml
file and name itwrangler.toml
.
- First, you need to replace the default config values
PUBLIC_KEY
,TOKEN
, andBOT_OWNER
. ReplacePUBLIC_KEY
andTOKEN
with the values you got from Creating the bot - Replace
BOT_OWNER
with your personal user ID. If you do not know your user ID, you can get it by reading this helpful article. - Then, you must create two things via CLI. If you installed everything properly, you should have no trouble with this.
- Run the command
wrangler login
and follow the steps displayed. - After that, run the command
wrangler kv namespace create RDAPCache
and save theid
value provided to you. - Replace the
id
under "RDAPCache" in your wrangler.toml with this newly obtained ID. - Repeat the previous steps for
MessageQueries
instead ofRDAPCache
- Finally, run the command
wrangler deploy
and if you did everything correctly, the bot should now be functional! :)