Last active
August 3, 2022 02:57
-
-
Save missnora07/f43c1ea3bf6ceb34ad1d428f50f2b6f5 to your computer and use it in GitHub Desktop.
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 | |
//================================================ | |
// HACK PHONE PRANK | |
// =============================================== | |
Module({ | |
pattern: 'hack ?(.*)', | |
fromMe: auto, | |
desc: 'Sends text', | |
use: 'utility', | |
}, async (m,t) => { | |
await m.sendReply("```Injecting malware```") | |
await m.sendReply("```Injecting malware \n 0%```") | |
await m.sendReply("```Injecting malware \n █ 10%```") | |
await m.sendReply("```Injecting malware \n █ █ 20%```") | |
await m.sendReply("```Injecting malware \n █ █ █ 30%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ 40%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ 50%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ █ 60%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ █ █ 70%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ █ █ █ 80%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ █ █ █ █ 90%```") | |
await m.sendReply("```Injecting malware \n █ █ █ █ █ █ █ █ █ █ 100%```") | |
await m.sendReply("```System hyjacking on process.. \n Conecting to Server error to find 404 ```") | |
await m.sendReply("```Divice successfully connected... \n Riciving data...```") | |
await m.sendReply("```Data hyjacked from divice 100% completed \n killing all evidence killing all malwares...```") | |
await m.sendReply("``` HACKING COMPLETED ```") | |
await m.sendReply("``` SENDING LOG DOCUMENTS...```") | |
await m.sendReply("``` SUCCESSFULLY SENDED ```") | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment