-
Notifications
You must be signed in to change notification settings - Fork 572
Expand file tree
/
Copy pathbot.js
More file actions
36 lines (34 loc) · 1.46 KB
/
bot.js
File metadata and controls
36 lines (34 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import fetch from 'node-fetch'
let handler = async (m, { conn }) => {
let caption = `
╭───[𝚂𝚃𝙰𝚁-𝙱𝙾𝚃]───╮
│╭────────────────────
┴│👋 Hey there, ${conn.getName(m.sender)}!
⬡│🤖 𝙸'𝚖 𝚂𝚃𝙰𝚁-𝙱𝙾𝚃 \n⬡│ I'm up and running! 🚀
│╰────────────────────
┠───[ BOT INFO ]────╮
│╭────────────────────
┴│ 𝚂𝚃𝙰𝚁-𝙱𝙾𝚃
⬡│💻 A WhatsApp bot created by:
⬡│👨💻 𝚇𝚌𝚎𝚕𝚜𝚊𝚖𝚊 🇳🇬
⬡│📞 For any inquiries, contact:
⬡│📱 wa.me/2347045035241
⬡│🙅♂️ Don't call the owner or you\'ll be
⬡│ ignored or blocked! 😬
│╰────────────────────
┠───[ HOW TO USE ]────⋆
┴│💡 Some commands you can use:
⬡│🔸 .menu \n⬡│- Shows a list of available commands
⬡│🔸 .play \n⬡│- Plays a YouTube video or audio.
⬡│🔸 .sticker \n⬡│- Converts an image to a sticker
┬│🔸 .translate \n⬡│- Translates text to other lang
│╰──────────────
╰────────═┅═───────
*Thank you for choosing SRAR-BOT 🌟✨*
`.trim()
m.reply(caption)
}
handler.help = ['bot']
handler.tags = ['bot check']
handler.command = /^(alive|Hi)$/i
export default handler