The Fast, Modular & Developer-Friendly WhatsApp Bot.
Le Bot WhatsApp rapide, modulaire et facile pour les développeurs.
- ⚡ Fast & Optimized: Uses
gifted-baileyswith stripped history sync for instant startup. - 🔌 Auto-Pairing: No QR Code scan needed in terminal! Just run and enter your number.
- 🛠️ Modular: Command structure is simple (
module.exports). - 🛡️ Secure: Built-in Group Protections (AntiLink, AntiSpam, AntiDelete...).
- 🌍 Multi-Language: Dynamic language switching (
fr,en...). - ⚙️ Customizable: Easily editable
config.jsand.env.
It's the easiest way to host the bot 24/7. C'est la façon la plus simple d'héberger le bot 24/7.
-
Upload & Extract: Upload the
REN-MDXzip file to your panel and extract it. -
Create Configuration: Create a file named
.envin the root folder and fill it: Créez un fichier nommé.envà la racine et remplissez-le :BOT_NAME=REN-MDX OWNER_NAME=TonNom OWNER_NUMBER=237xxxxxxxxx PREFIX=. SESSION_NAME=session DEFAULT_LANG=fr # Optional / Optionnel AUTO_READ=false NEWSLETTER_JID=120363420601379038@newsletter
-
Install & Start:
- Go to "Startup" tab (or Console).
- Run command:
npm install && npm start - Auto-Pairing: The console will ask for your number if no session exists.
Perfect for testing or local hosting. Parfait pour tester ou héberger localement.
apt update && apt upgrade
pkg install git nodejs ffmpeg
git clone https://github.com/stephdev12/REN-MDX.git
cd REN-MDX
npm install
npm startAdding a command is super simple. Create a file in plugins/category/mycmd.js:
Ajouter une commande est super simple. Créez un fichier dans plugins/... :
module.exports = {
name: 'mycmd',
category: 'misc',
description: 'Test command',
usage: '.mycmd',
// Flags
ownerOnly: false,
groupOnly: false,
execute: async (client, message, args) => {
await client.sendMessage(message.key.remoteJid, { text: 'It works!' });
}
};- Created by: SEN STUDIO
- Support Channel: Join WhatsApp Channel
This bot was created for educational purposes using an unofficial WhatsApp API. The developer is not responsible for any misuse, account bans, or damages caused by this software. Use at your own risk.
Ce bot a été créé à des fins éducatives en utilisant une API WhatsApp non officielle. Le développeur n'est pas responsable des mauvaises utilisations, des bannissements de compte ou des dommages causés par ce logiciel. Utilisez-le à vos propres risques.
