Kruiger Labs
Client Portal Get Started
DocumentationDM RELAY
Sign inGet support
DM RELAY

DM RELAY Setup

Install DM RELAY, enable Message Content Intent, create .env, and start bot.py.

View DM RELAY Product

Install and start#

  1. Extract DM RELAY into a private directory.
  2. Copy .env.example to .env.
  3. Create the Discord bot and enable Message Content Intent.
  4. Enter the bot token, numeric owner ID, database credentials, and customization values.
  5. Install dependencies and start the bot.
  6. Send a test DM from a non-owner account and verify owner controls.
pip install -r requirements.txt
python bot.py
# or
python3 bot.py

Pterodactyl-style settings#

SettingWhat to enterWhat it controls
BOT_PY_FILEbot.pyPython entry file.
REQUIREMENTS_FILErequirements.txtDependency file installed by the host.
PY_PACKAGESLeave empty when requirements.txt is installed automaticallyOptional manual package list.

Discord permissions#

Invite with bot and applications.commands. Recommended permissions are View Channels, Send Messages, Embed Links, Attach Files, Add Reactions, and Read Message History. DM RELAY does not require Administrator for normal functionality.

Back to top