← back to browse
goat command

roast

Random roast maro

0
views
0
likes
0
installs

Aliases: roast

raw source
module.exports = {
  config: {
    name: "roast",
    aliases: ["roast"],
    version: "v1.3",
    author: "Sazzad",
    countDown: 5,
    role: 0,
    shortDescription: "Random roast maro",
    longDescription: "Mention ba reply diye kauke roast koro",
    category: "fun",
    guide: {
      en: "{p}roast [@mention / reply]"
    }
  },

  onStart: async function ({ api, event, args, message, usersData }) {
    const sendMsg = (txt) => message && typeof message.reply === "function"? message.reply(txt) : api.sendMessage(txt, event.threadID, event.messageID);

    let targetID = event.senderID;
    let targetName = await usersData.getName(targetID);

    if (event.type === "message_reply") {
      targetID = event.messageReply.senderID;
      targetName = await usersData.getName(targetID);
    } else if (Object.keys(event.mentions || {}).length > 0) {
      targetID = Object.keys(event.mentions)[0];
      targetName = await usersData.getName(targetID);
    }

    const specialID = "61587127840501";
    const senderID = event.senderID;

    const roastLines = [
      `tor face dekhle wifi o disconnect hoye jay ๐Ÿ˜‚`,
      `tor brain e RAM 128MB ๐Ÿ’ป`,
      `tor kotha shunle calculator o error dey ๐Ÿคฏ`,
      `tui hoili manush rupi load shedding ๐Ÿ˜ด`,
      `tor attitude dekhe Google o bolbe 'did you mean: bechara?' ๐Ÿ˜†`,
      `tor photo dekhle camera bolbe 'ami tulte parbo na' ๐Ÿ“ธ`,
      `tor moto friend thakle enemy lagena ๐Ÿ˜Ž`,
      `tui hoili free fire er bot ๐Ÿ”ซ`,
      `tor smile dekhe bhut o voy pay ๐Ÿ˜ฑ`,
      `tui hoili group er spam ๐Ÿ“จ`,
      `tor IQ room temperature ๐ŸŒก๏ธ`,
      `tui hoili charge chara powerbank ๐Ÿชซ`,
      `tor kotha shunle dictionary kanna kore ๐Ÿ˜ญ`,
      `tui hoili walking cringe ๐Ÿคฃ`,
      `tor face e filter dileo Kaj hoyna ๐Ÿ˜…`,
      `tui hoili human version of 404 error ๐Ÿ›‘`,
      `tor mathay gobor chara kisui nai ๐Ÿ’ฉ`,
      `tui hoili pubg er noob ๐ŸŽฎ`,
      `tor roast korar o iccha hoyna karon tui nijei roast ๐Ÿคทโ€โ™‚๏ธ`,
      `tui hoili copy kora meme ๐Ÿ“ธ`,
      `tor jibon e WiFi ase kintu connection nai ๐Ÿ“ถ`,
      `tui hoili dustbin er king ๐Ÿ‘‘`,
      `tor face dekhle mirror o crack hoy ๐Ÿชž`,
      `tui hoili mobile er hang ๐Ÿ“ต`,
      `Boss sazzad er samne tui ekta poka  ๐Ÿฆ`,
      `tui hoili expired chips ๐ŸŸ`,
      `tor attitude sune google bolbe 'source?' ๐Ÿค”`,
      `tui hoili group er unpaid comedian ๐Ÿ˜‚`,
      `tor brain e virus dhukse free te ๐Ÿฆ `,
      `tui hoili chapri version of human ๐Ÿ˜Ž`,
      `tor photo te caption lage 'do not try this at home' ๐Ÿšซ`,
      `tui hoili loading... 99% ๐Ÿ“Š`,
      `tor kotha shunle chatgpt o leave ney ๐Ÿค–`,
      `tui hoili auto correct er shikar ๐Ÿž`,
      `tor life e update ashe na ๐Ÿ“…`,
      `tui hoili tiktok er puran trend ๐ŸŽต`,
      `tor mukh dekhle brush o bolbe 'ami parbo na' ๐Ÿชฅ`,
      `tui hoili copy paste kora personality ๐Ÿ“`,
      `tor kotha shunle earphone o khule jay ๐ŸŽง`,
      `tui hoili free te paoa headache ๐Ÿคฏ`,
      `tor style dekhe fashion o suicide korbe ๐Ÿ˜ฑ`,
      `tui hoili group er unwanted notification ๐Ÿ“ฃ`,
      `tor brain e space kom dam beshi ๐Ÿ“ˆ`,
      `tui hoili recharge chara sim ๐Ÿ“ฑ`,
      `tor kotha shunle Siri bolbe 'I can't' ๐Ÿค–`,
      `tui hoili exam er ager raat ๐Ÿ˜ด`,
      `tor face e beauty cam o kaj korena ๐Ÿ“ธ`,
      `tui hoili 2G speed er manush ๐Ÿ“ถ`,
      `tor kotha shunle radio o off hoye jay ๐Ÿ“ป`
    ];

    if (senderID === specialID && targetID === specialID) {
      return sendMsg(`Boss tmk roast korar khomota amr nai..๐Ÿฅฒ`);
    }

    if (targetID === specialID && senderID!== specialID) {
      return sendMsg(`Shor bkaxda boss ke roast korte ashchis? ๐Ÿ˜ก`);
    }

    const randomRoast = roastLines[Math.floor(Math.random() * roastLines.length)];

    return sendMsg(
`@${targetName} ${randomRoast}`
    );
  }
};

View raw file