Skip to content

stephdev12/REN-MDX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REN-MDX

REN-MDX 🚀

The Fast, Modular & Developer-Friendly WhatsApp Bot.
Le Bot WhatsApp rapide, modulaire et facile pour les développeurs.

Fork Repo Download Zip


🌟 Features / Fonctionnalités

  • ⚡ Fast & Optimized: Uses gifted-baileys with 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.js and .env.

🚀 Deployment / Déploiement

📦 1. Panel (Pterodactyl, Sen-Host, etc.)

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.

  1. Upload & Extract: Upload the REN-MDX zip file to your panel and extract it.

  2. Create Configuration: Create a file named .env in 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
  3. 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.

📱 2. Termux (Android)

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 start

👨‍💻 For Developers / Pour les Devs

Adding 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!' });
  }
};

📞 Support & Credits


⚠️ Disclaimer

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors