File size: 3,881 Bytes
046b271 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
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 {
// β‘οΈ VΓ©rifier si l'utilisateur est l'Owner
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)); // Adjust the delay as needed
}
} catch (e) {
console.log(e);
reply(`β *Error!* ${e.message}`);
}
});
|