Features
Demo Video
Installation and Setup
1. Make sure you have Node.js and npm (Node Package Manager) installed on your system. You can download the latest version of Node.js from the official website (https://nodejs.org/) and install it.
2. Download the bot files and unzip them to a new folder on your computer.
3. Create a Discord Bot from the Discord Developer Portal
5. Open a terminal and navigate to the folder (that you created in step 2)
6. Install the node modules using
7. Run the bot using
FAQ
1. Is this obfuscated?
Links
Support Server: https://discord.gg/KkS6yP8
- Exact Lookup (status must exactly match)
- CaSe Sensitivity (capitalization)
- Multiple status roles at once
Demo Video
JavaScript:
module.exports = {
token: "YOUR_DISCORD_BOT_TOKEN",
// Discord Guild ID to check statuses in
// (roleIds below should be from this guild too)
guildId: "GUILD_ID",
status: [
{
exactLookup: true, // Should status be exactly as below aka true; (or does it just have to be contained within the status aka false)
case_sensitive: true, // Does capitalization matter?
status: "DANCE!", // The status to look for.
roleId: "1063619693853823036", // What role should we give?
},
{
exactLookup: true,
case_sensitive: false,
status: "Poop!",
roleId: "1063619705253941328",
},
{
exactLookup: false,
case_sensitive: false,
status: "!",
roleId: "1063619707112013865",
},
{
exactLookup: true,
case_sensitive: false,
status: "CaSe-InSeNsitive",
roleId: "1063739421163274250",
},
{
exactLookup: false,
case_sensitive: false,
status: "Discord.gg",
roleId: "1063739421972758589",
},
]
}
Installation and Setup
1. Make sure you have Node.js and npm (Node Package Manager) installed on your system. You can download the latest version of Node.js from the official website (https://nodejs.org/) and install it.
2. Download the bot files and unzip them to a new folder on your computer.
3. Create a Discord Bot from the Discord Developer Portal
3a. Click on "New Application", give it a name and Click the "Create" button.
3b. Click on "Add Bot" button under "Settings" tab
3c. Scroll down to "Privileged Gateway Intents"
3d. Turn on "Presence Intent" and "Server Members Intent"
3e. Click on "Reset Token"
3f. Copy the token
4. Open the "config.json" file in the bot folder and replace "YOUR_BOT_TOKEN_HERE" with the bot token that you copied in step 3f.5. Open a terminal and navigate to the folder (that you created in step 2)
6. Install the node modules using
npm install
7. Run the bot using
npm run start
FAQ
1. Is this obfuscated?
- No, it is not.
Links
Support Server: https://discord.gg/KkS6yP8