← back to browse
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);
        }
    }
};

View raw file