This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><html class="_9dls" lang="en" dir="ltr"><head><link data-default-icon="https://static.cdninstagram.com/rsrc.php/v3/yV/r/_8T3PbCSTRI.png" rel="icon" sizes="192x192" href="https://static.cdninstagram.com/rsrc.php/v3/yV/r/_8T3PbCSTRI.png" /><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=2,shrink-to-fit=no" /><meta property="al:android:app_name" content="Threads" /><meta property="al:android:package" content="com.instagram.barcelona" /><meta property="al:android:url" content="https://www.threads.net/@am1uth" /><meta property="al:ios:app_name" content="Threads" /><meta property="al:ios:app_store_id" content="6446901002" /><meta property="al:ios:url" content="barcelona://user?username=am1uth" /><meta name="apple-itunes-app" content="app-id=6446901002, app-argument=barcelona://user?username=am1uth" /><meta property="og:site_name" content="Threads" /><meta property="og:type" content="profile" /><link rel="me" href="https://am1uth.netlify.app/" /><link rel="canonica |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// get group invite with bio | |
const { | |
getString | |
} = require('./misc/lang'); | |
const { | |
isAdmin, | |
isNumeric, | |
mentionjid | |
} = require('./misc/misc'); | |
const Lang = getString('group'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//love art with a emoji(some emoji didn't work) | |
const {Module} = require('../main') | |
const { | |
MODE | |
} = require('../config'); | |
let w = MODE == 'public' ? false : true | |
Module({pattern: "xart ?(.*)",fromMe:w ,desc: 'readmore generator'}, async(m, match) => { | |
z=match[1].split("")[0]; | |
await m.sendMessage("\n"+"\t".repeat(6)+" "+z+""+z+" "+z+""+z+"\n"+"\t".repeat(6)+" "+z+"\t "+z+"\t\t \t\t\t"+z+" \n"+"\t".repeat(5)+" \t"+z+"\t".repeat(12)+" "+z+"\n"+"\t".repeat(5)+" \t "+z+"\t".repeat(10)+" "+z+"\n"+"\t".repeat(4)+"\t\t "+z+"\t".repeat(7)+z+"\n"+"\t".repeat(11)+z+"\t".repeat(3)+z+"\n"+"\t".repeat(13)+" "+z+"\n"); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Module} = require('../main') | |
const {skbuffer} = require('raganork-bot'); | |
Module({pattern: 'wame ?(.*)',fromMe: true,desc: 'vdo', use: 'utility'}, async (m, match) => { | |
var id=m.sender.split("@")[0]; | |
m.send("https://wa.me/"+id+"/?text="+match[1].split(" ")[0]); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//credits to souravkl11 | |
const {Module} = require('../main'); | |
const {Mimetype} = require('@adiwajshing/baileys'); | |
const fs = require('fs'); | |
const got = require("got"); | |
const axios = require('axios'); | |
const setting = require('../config'); | |
const {getPost,skbuffer} = require('raganork-bot'); | |
const {downloadGram} = require('./misc/misc'); | |
const Config = require('../config'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Module} = require('../main') | |
const {skbuffer} = require('raganork-bot'); | |
const {MODE} = require('../config'); | |
let auto = MODE == 'public' ? false : true | |
//================================================ | |
// Exit from a process | |
// =============================================== | |
Module({ | |
pattern: 'exit ?(.*)', | |
fromMe: auto, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//modified status plugin | |
//original:https://gist.github.com/mask-sir/7039ba28830665af850441ed94c115d2 | |
//Buttons added..😁 | |
const {Module} = require('../main') | |
const { | |
MODE | |
} = require('../config'); | |
const { | |
getJson | |
} = require('./misc/misc'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Module} = require('../main') | |
const {skbuffer} = require('raganork-bot'); | |
Module({pattern: 'xtag ?(.*)',fromMe: true,desc: 'Tag to jid', use: 'utility',}, async (m, match) => { | |
if (!match[1]) return await m.sendMessage("*Give me a jid*\nExample .xtag jid"); | |
if (!m.reply_message) return await m.sendMessage("*Reply to a Message*"); | |
let Jids = [...match[1].match(/[0-9]+(-[0-9]+|)(@g.us|@s.whatsapp.net)/g)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Module} = require('../main') | |
const {skbuffer} = require('raganork-bot'); | |
const {MODE} = require('../config'); | |
let auto = MODE == 'public' ? false : true | |
Module({ | |
pattern: 'wame ?(.*)', | |
fromMe: auto, | |
desc: 'wa.me url maker', | |
use: 'utility', | |
}, async (message, match) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> m.quoted.message = m.quoted.message; | |
var cp=m.quoted.message.caption | |
m.quoted.message[Object.keys(m.quoted.message)[0]].viewOnce = true | |
await m.forwardMessage(jid,m.quoted,{caption: cp}) |
NewerOlder