-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
const { smd, sleep } = require('../lib'); | ||
|
||
smd({ cmdname: "hack", type: "fun", info: "hacking prank", filename: __filename }, async (citel) => { | ||
const messages = [ | ||
"Injecting Malware", | ||
" █ 10%", | ||
" █ █ 20%", | ||
" █ █ █ 30%", | ||
" █ █ █ █ 40%", | ||
" █ █ █ █ █ 50%", | ||
" █ █ █ █ █ █ 60%", | ||
" █ █ █ █ █ █ █ 70%", | ||
" █ █ █ █ █ █ █ █ 80%", | ||
" █ █ █ █ █ █ █ █ █ 90%", | ||
" █ █ █ █ █ █ █ █ █ █ 100%", | ||
"System hyjacking on process.. \\n Conecting to Server error to find 404 ", | ||
"Device successfully connected... \\n Riciving data...", | ||
"Data hyjacked from divice 100% completed \\n killing all evidence killing all malwares...", | ||
" HACKING COMPLETED ", | ||
" SENDING LOG DOCUMENTS...", | ||
" SUCCESSFULLY SENT DATA AND Connection disconnected", | ||
"BACKLOGS CLEARED" | ||
"POWERED BY VENOCYBER MD" | ||
"By Venocyber tech®" | ||
]; | ||
|
||
let editedMessage; | ||
for (const message of messages) { | ||
editedMessage = await citel.send(editedMessage || message); | ||
await sleep(1000); | ||
editedMessage = await citel.edit(editedMessage, message); | ||
} | ||
}); |