This file contains hidden or 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
| 5/22/24, 10:46β―AM - Messages to yourself are end-to-end encrypted. No one outside of this chat, not even WhatsApp, can read or listen to them. Tap to learn more. | |
| 5/22/24, 10:46β―AM - IMRANKHAN π: https://drive.google.com/file/d/1NvMXdY3dySSPHjqK1fYA2dLNvLcvbXWh/view?usp=drivesdk | |
| 5/23/24, 10:37β―AM - IMRANKHAN π: https://play.google.com/store/apps/details?id=com.puzzleGame.limbo&hl=en_US&gl=US | |
| 5/24/24, 3:28β―AM - IMRANKHAN π: https://youtube.com/shorts/FbsuX7gocQQ?feature=shared | |
| 5/24/24, 6:01β―AM - IMRANKHAN π: Easily manage your heroku apps easily without logging in with this easy to use Heroku CLI Tool.... | |
| https://heroko-e6ee802989b1.herokuapp.com | |
| Add(Create) apps delete apps and check your app logsππ |
This file contains hidden or 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
| xjoajxey:[email protected]:6543 | |
| xjoajxey:[email protected]:6540 | |
| zckuygfr:[email protected]:7030 | |
| teivuhao:[email protected]:6837 | |
| zckuygfr:[email protected]:6543 | |
| vdtcslgx:[email protected]:6593 | |
| teivuhao:[email protected]:6014 | |
| xjoajxey:[email protected]:5611 | |
| zckuygfr:[email protected]:6014 | |
| zckuygfr:[email protected]:6593 |
This file contains hidden or 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
| { | |
| "date": "2025-09-12", | |
| "quiz": [ | |
| { | |
| "question": "What does a Blizzard Warning mean?", | |
| "options": [ | |
| "Heavy rain", | |
| "Sunny", | |
| "Fog", | |
| "Heavy snow" |
This file contains hidden or 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
| :: WinScript | |
| @echo off | |
| :: Check if the script is running as admin | |
| openfiles >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| color 4 | |
| echo This script requires administrator privileges. | |
| echo Please run WinScript as an administrator. | |
| pause | |
| exit |
This file contains hidden or 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 { bot, getBuffer, jidToNum } = require('../lib/'); | |
| const { VERSION } = require('../config'); | |
| const { textToStylist, getUptime, getRam } = require('../lib/'); | |
| const url1 = 'https://i.ibb.co/Fkp6Px5j/0c128bdc34a377ee07a7526d21b305bb.gif'; | |
| const url2 = 'https://i.ibb.co/MDjMZ5Yk/70575940daf4db8bd347046de0fa3372.gif'; | |
| bot( | |
| { | |
| pattern: 'nenu ?(.*)', |
This file contains hidden or 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 { bot, isUrl, getImgUrl } = require('../lib/') | |
| bot( | |
| { | |
| pattern: 'mdrive ?(.*)', | |
| desc: 'Download from Google Drive link', | |
| type: 'download', | |
| }, | |
| async (x, y) => { | |
| y = y || x.reply_message.text; |
This file contains hidden or 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 fs = require('fs').promises; | |
| const path = require('path'); | |
| const os = require('os'); | |
| const { promisify } = require('util'); | |
| const { exec: execCallback } = require('child_process'); | |
| const { bot, isUrl, sticker, addExif } = require('../lib'); | |
| require('dotenv').config(); | |
| const exec = promisify(execCallback); | |
| class DownloadQueue { |