Skip to content

Instantly share code, notes, and snippets.

View vishnuprasadkl29's full-sized avatar
😀
Myru Happening

sana minatozaki vishnuprasadkl29

😀
Myru Happening
View GitHub Profile
const {Module} = require("../main");
let text = "എന്താടാ ചുവന്ന തായോളി മെൻഷൻ ഊമ്പുന്നെ നിന്റെ അമ്മേടെ പതിനാറ് നടക്കുന്നോ ഇവിടെ"
Module({on:"text",fromMe:false},(async (m,match)=>{
let mentioned = m.mention[0].split("@")[0];
if (m.mention.length && (require("../config").SUDO.includes(mentioned) || m.myjid === mentioned)){
await m.sendReply(text)
}
}))