goat
command
aruuboss
Aruu bb
0
views
0
likes
0
installs
raw source
module.exports = {
config: {
name: "aruuboss",
version: "1.0",
author: "๐๐ฟ๐ถ๐๐ฎ๐ป ๐ฏ๐ฏ'๐",
category: "FUN",
shortDescription: "Aruu bb'z mention korle gali dey"
},
onStart: async function() {},
onChat: async function ({ api, event, Users }) {
const msg = event.body ? event.body.toLowerCase() : "";
const senderName = await Users.getNameUser(event.senderID);
// Jodi kew "aruu bb'z" likhe
if (msg.includes("aruu bb'z") || msg.includes("aruu bbz") || msg.includes("aruu boss")) {
const replies = [
`๐ก Kire bukacuda ${senderName} Aruu boss re mention des kn?`,
`๐ ${senderName} Aruu boss busy ase, pore msg de gadha`,
`๐ค Boss bow ke somoy dicche, disturb koris na ${senderName}`,
`๐คซ ${senderName} chup! Boss vabir kase sob bole dibo`,
`๐ ${senderName} tui mone hoy kheye kaj nai? Aruu boss ke jalas`
];
const rand = replies[Math.floor(Math.random() * replies.length)];
return api.sendMessage(rand, event.threadID, event.messageID);
}
}
};