Skip to content

base bot wa type case, bisa pairing code. jadi ga perlu scan pakai QR, cukup masukin nomor dan code pairing nya di WhatsApp, cocok buat pemula yang pengen belajar buat bot, dan full no enc. jangan lupa kasih ⭐ yah :3

License

Notifications You must be signed in to change notification settings

ryuhandev/rimubase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rimuru Bot

💧 Rimuru Base

Base WhatsApp Bot simple & powerful untuk pemula yang ingin belajar membuat bot sendiri dari awal. Dibuat dengan Node.js dan Baileys MD sangat cocok untuk belajar membuat fitur (case) dan mengembangkan bot pribadi.

GitHub Stars GitHub Issues License


✨ Features

  • 💧 Full Case
  • 💧 Fully 100% No Enc
  • 💧 Bottom Image support
  • 💧 Bottom Video Support
  • 💧 Support Termux
  • 💧 Support Node V20+
  • 💧 Pairing Code Login
  • 💧 Simple Case Logic
  • 💧 Fast Response
  • 💧 Fast Installing Module

Rimuru Bot

💧 Installation (Termux)

Update Package

pkg update -y && pkg upgrade -y

Install git & nodejs

pkg install git -y && pkg install nodejs

Install Script

git clone https://github.com/ryuhandev/rimubase.git
cd rimubase
npm install
npm start

Masukkan nomor WhatsApp kamu dengan awalan 62 tanpa tanda “+”. Contoh salah: +62xxxx ❌ Contoh benar: 62xxxx ✅


Rimuru Bot

💧 Cara Menambah Fitur (Case)

Semua fitur bot disimpan di file: sock.js

Berikut beberapa contoh dasar untuk menambah fitur:


🧩 1. Balasan Sederhana dengan reply

case 'hii': {
  reply('Halooo 👋')
}
break

Fungsi reply() berguna untuk mengirim teks cepat tanpa harus menulis sock.sendMessage.


🧩 2. Mengirim Pesan Biasa

case 'halo': {
  sock.sendMessage(m.chat, { text: 'Hai juga! Ada yang bisa Rimuru bantu?' }, { quoted: m })
}
break

🧩 3. Mengirim Button Message (Bottom Message)

Contoh pesan dengan dua tombol:

case 'menu': {
  let anu = 'Hai 👋\nBerikut beberapa fitur yang tersedia!'
  sock.send2Button(
    m.chat,
    anu,
    namabot,
    '📜 Menu', '.menu',
    '👑 Owner', '.owner',
    m
  )
}
break

Pastikan fungsi send2Button sudah tersedia di base kamu (udah ada di main.js).


🧩 4. Mengirim Gambar

case 'foto': {
  sock.sendMessage(
    m.chat,
    { image: { url: 'https://telegra.ph/file/abc123.jpg' }, caption: 'Ini fotonya!' },
    { quoted: m }
  )
}
break

🧩 5. Mengirim Video

case 'video': {
  sock.sendMessage(
    m.chat,
    { video: { url: 'https://telegra.ph/file/abc123.mp4' }, caption: 'Nih video kamu!' },
    { quoted: m }
  )
}
break

🧩 6. Auto Reply dengan Kondisi

if (body.startsWith('hai')) {
  reply('Hai juga manusia 👋')
}

💧 Tips Dasar Menambah Case

  1. Buka file sock.js

  2. Cari bagian seperti ini:

switch(command) {
  case 'ping':
    reply('Pong!')
    break
}
  1. Tambahkan case kamu di bawahnya.

  2. Simpan file lalu restart bot dengan:

npm start


💧 Contoh Hasil Jalannya Bot

User: hii Bot : Halooo 👋

User: menu Bot : [Menampilkan pesan dengan tombol Menu & Owner]


💧 Support

Jika kamu suka project ini, bantu dengan:

⭐ Memberi bintang repo ini di GitHub

🧠 Berkontribusi dengan fitur baru

🧩 Membagikan ke teman yang ingin belajar membuat bot WhatsApp sendiri


Rimuru Bot

Creators Contact: 👤

Github
Telegram
Facebook


Rimuru Bot

💙 Donate me :3

Saweria :3


📜 License

MIT License © Ryuhan Minamoto


About

base bot wa type case, bisa pairing code. jadi ga perlu scan pakai QR, cukup masukin nomor dan code pairing nya di WhatsApp, cocok buat pemula yang pengen belajar buat bot, dan full no enc. jangan lupa kasih ⭐ yah :3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published