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}`
);
}
};