Skip to content

Instantly share code, notes, and snippets.

@souravkl11
Last active March 23, 2024 16:04
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 69 You must be signed in to fork a gist
  • Save souravkl11/7ba617d50196c809d0d1afeb96d6a494 to your computer and use it in GitHub Desktop.
Save souravkl11/7ba617d50196c809d0d1afeb96d6a494 to your computer and use it in GitHub Desktop.
Automatically sends status if anyone asks our status. Like "send" "And" etc...
// Made with ❤ by SKL11
// Module({pattern: 'status_sender ?(.*)', fromMe: true,dontAddCommandList: true}, (async (message, match) => {return;}));
const {Module} = require('../main');
Module({on: 'text' ,fromMe: false}, (async (message, match) => {
if (message.fromMe || !message.reply_message || message.quoted.key.remoteJid !== 'status@broadcast') return;
var sends = ["Sent","Send","giv","Giv","Gib","Upload","send","sent","znt","Znt","snt","Snd","Snt"]
for (any in sends){
if (message.message.includes(sends[any])) {
return await message.forwardMessage(message.jid, message.quoted,{contextInfo:{ isForwarded: false}});
}
}
}));
@Holister12345
Copy link

Broo ippo ithu install akunilla

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment