tejasify allows you to make any discord server into a discord server with career_maxxing in it by condensing several successive messages into a single message separated by two periods ".."
- Automatically detects when a user sends 2+ consecutive messages
- Deletes the duplicate messages
- Posts a combined message in format:
@user message1..message2..message3 - Continues to append messages if the user keeps sending without interruption
- Only resets when a different user (not the bot) sends a message
- Go to the Discord Developer Portal
- Click "New Application" and give it a name
- Go to the "Bot" section and click "Add Bot"
- Under the bot's username, click "Reset Token" to get your token
- Enable the following Privileged Gateway Intents:
- Message Content Intent
- Server Members Intent (optional)
- Go to OAuth2 → URL Generator
- Select scopes:
bot - Select bot permissions:
View Channels,Send Messages,Manage Message,Read Message History - Copy the generated URL and open it in your browser to invite the bot to your server
- Clone this repository:
git clone <repository-url>
cd tejasify- Create a
.envfile and add your Discord bot token:
cp .env.example .env
nano .env
DISCORD_BOT_TOKEN=your_actual_token_here- Build and run with Docker Compose:
docker-compose up -dView logs:
docker-compose logs -fStop the bot:
docker-compose down!ping- Check if the bot is responsive and see latency!help_tejasify- Show help information
User sends:
User: Hello
User: How are you
User: Today?
Bot will delete those messages and post:
@User Hello..How are you..Today?