|
|
|
|
|
const {cmd , commands} = require('../command'); |
|
|
|
cmd({ |
|
pattern: "hack", |
|
desc: "Displays a dynamic and playful 'Hacking' message for fun.", |
|
category: "fun", |
|
react: "π¨βπ»", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
if (!isOwner) return reply("*π α΄Ι΄ΚΚ α΄Κα΄ α΄α΄‘Ι΄α΄Κ α΄α΄Ι΄ α΄sα΄ α΄ΚΙͺs α΄α΄α΄α΄α΄Ι΄α΄
.*"); |
|
|
|
const steps = [ |
|
'π» *ALI-MD-V1 HACK STARTING...* π»', |
|
'', |
|
'*Initializing hacking tools...* π οΈ', |
|
'*Connecting to remote servers...* π', |
|
'', |
|
'```[ββββββββββ] 10%``` β³', |
|
'```[ββββββββββββββββββββ] 20%``` β³', |
|
'```[ββββββββββββββββββββββββββββββ] 30%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββ] 40%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββ] 50%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ] 60%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ] 70%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ] 80%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ] 90%``` β³', |
|
'```[ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ] 100%``` β
', |
|
'', |
|
'π *System Breach: Successful!* π', |
|
'π *Command Execution: Complete!* π―', |
|
'', |
|
'*π‘ Transmitting data...* π€', |
|
'*π΅οΈββοΈ Ensuring stealth...* π€«', |
|
'*π§ Finalizing operations...* π', |
|
'*π§ ali Get Your All Data...* π', |
|
'', |
|
'β οΈ *Note:* All actions are for demonstration purposes only.', |
|
'β οΈ *Reminder:* Ethical hacking is the only way to ensure security.', |
|
'β οΈ *Reminder:* Strong hacking is the only way to ensure security.', |
|
'', |
|
' *π¨βπ» YOUR DATA HACK SUCCESSFULLY π©βπ»β£*' |
|
]; |
|
|
|
for (const line of steps) { |
|
await conn.sendMessage(from, { text: line }, { quoted: mek }); |
|
await new Promise(resolve => setTimeout(resolve, 1000)); |
|
} |
|
} catch (e) { |
|
console.log(e); |
|
reply(`β *Error!* ${e.message}`); |
|
} |
|
}); |
|
|