Skip to content

Instantly share code, notes, and snippets.

View mrlinux007's full-sized avatar
🎯
Focusing

Iam Adeeb mrlinux007

🎯
Focusing
View GitHub Profile
const {
Function,
isPublic,
getString,
} = require("../lib/");
Function({
pattern: 'nm ?(.*)',
fromMe: isPublic,
desc: 'wapi generator',
type: 'whatsapp'
const {
Function,
isPublic
} = require('../lib/')
Function({
pattern: '007button ?(.*)',
fromMe: isPublic,
desc: 'Sends list button',
type: 'misc',
}, async (message, match) => {
Function({
pattern: '1loc ?(.*)',
fromMe: isPublic,
desc: 'Sends location',
type: 'misc',
}, async (message, match) => {
await message.client.sendMessage(
message.chat,
{ location: { degreesLatitude: 24.121231, degreesLongitude: 55.1121221 } }
const { addExif, Function, cropsticker } = require('../lib/')
Function (
{
pattern: '1cs ?(.*)',
fromMe: true,
desc: 'Random anime quote',
type: 'info',
},
async (message, match) => {
@mrlinux007
mrlinux007 / 𝚳𝚫𝚳𝚯𝚯𝚻𝐘 𝐒𝚵𝚪 STICKER (ツ).js
Created August 28, 2022 14:37
𝚳𝚫𝚳𝚯𝚯𝚻𝐘 𝐒𝚵𝚪-RANDOM-STICKER-SENDER🚀
const { Function } = require('../lib/')
const config = require ('../config')
const fs = require('fs')
Function ( {pattern: 'mser ?(.*)', fromMe: true, desc: 'random mamooty♡ sticker sending plugin', type: 'misc' },async (message, match) => {let image = ["https://i.imgur.com/hye66Kj.png", "https://i.imgur.com/jvvtYwA.png", "https://i.imgur.com/RUUsFRP.png", "https://i.imgur.com/fdxVIhb.png", "https://i.imgur.com/lcsUT6D.png", "https://i.imgur.com/CPUxXNx.png", "https://i.imgur.com/LXFgeAp.png", "https://i.imgur.com/fsngIvL.png", "https://i.imgur.com/keuqqHC.png", "https://i.imgur.com/xHocdiJ.png", "https://i.imgur.com/9SQqYPd.png", "https://i.imgur.com/l7b5S78.png", "https://i.imgur.com/4dhxmkd.png", "https://i.imgur.com/5ro2oO9.png", "https://i.imgur.com/Td8GXZp.png", "https://i.imgur.com/sgjZoak.png", "https://i.imgur.com/O5EWi61.png", "https://i.imgur.com/cIFyVI7.png", "https://i.imgur.com/m1ONvBS.png", "https://i.imgur.com/nMy8WwK.png", "https://i.imgur.com/KvIsQ9y.png", "https://i.imgur.com/rMFqw8q.png
@mrlinux007
mrlinux007 / Menu 3.js
Last active September 29, 2022 18:08
const {Function,isPublic,Menu,RandomFancy,prefix} = require('../lib/');
const {BOT_INFO} = require('../config')
Function({pattern: 'roow ?(.*)', fromMe: isPublic, dontAddCommandList: false, type: 'misc'}, async (m, text, client) => {
const message= await RandomFancy(await Menu(m))
await client.sendMessage(m.chat, {
image: {url: `${BOT_INFO.split(";")[3]}` },
caption: `${message}`,
footer: `⏤͟͟͞͞✪⃝🌍കꪆലം എ൭ന്ന ന᭄͢൭ന്റ മുമ്പ᭄͢ൽ എത്ത᭄͢ച്ചു൭വങ്ക᭄͢ൽ എ൭ന്റ മരണം വരെ ഞꪆൻ ന᭄͢ന്നോ൭ടാപ്പം ഉണ്ടꪆയ᭄͢ര᭄͢ക്കുംﮩ٨ـﮩﮩ٨ـ 🥺💗`,
templateButtons: [{urlButton: {displayText: 'Contact OWNER♡', url: 'https://wa.me/919747332588?text=*HY+BROH*'}},{urlButton: {displayText: 'Contact Owner 2nd♥', url: `https://wa.me/918921257475?text=*HY+BROH*`}},{quickReplyButton: {displayText: 'Speed Test🐌', id: prefix + 'ping'}},{quickReplyButton: {displayText: 'List Commands📜', id: prefix + 'list'}}]
@mrlinux007
mrlinux007 / Spongo.js
Last active September 29, 2022 18:08
const {Function,isPublic} = require("../lib/");
Function({pattern: 'sponge ?(.*)', fromMe: isPublic, desc: 'self mention', type: 'gfx'}, async (m, text, client) => {
try{
if(!text) return await m.reply("Give me url");
await client.sendMessage(m.chat,{ image: { url : `https://fatiharridho.herokuapp.com/api/canvas/spongebob?bg=${text}`}});
} catch (e) { m.reply(`${e}`)}
});
const {
forwardOrBroadCast,
genHydratedButtons,
bot,
parsedJid,
getBuffer,
} = require('../lib/')
const {
forwardOrBroadCast,
bot,
parsedJid,
getBuffer,