· 5 years ago · May 04, 2020, 10:16 AM
1
2 case "hack":
3 (async () => {
4 let mainMsg = await message.channel.send(
5 "Downloading target's data..."
6 );
7 await Delay(3000);
8 mainMsg.edit("Decompressing files...");
9 await Delay(3000);
10 mainMsg.edit(`Selling data on e-bay...`);
11 await Delay(2000);
12 let money = ["", "K", "M", "B"];
13 mainMsg.edit(
14 `Sold for ${Math.floor(Math.random() * 1500)}${
15 money[Math.floor(Math.random() * money.length)]
16 }`
17 );
18 await Delay(2000);
19 let emails = ["pussyeater", "fortniter", "bomber"];
20 let emails2 = ["gmail.com", "outlook.cz", "outlook.com", "seznam.cz"];
21 mainMsg.edit(`Tracing target's email adress...`);
22 await Delay(1500);
23 mainMsg.edit(
24 `Tracing target's email adress... **${
25 emails[Math.floor(Math.random() * emails.length)]
26 }@${emails2[Math.floor(Math.random() * emails2.length)]}**`
27 );
28 await Delay(3000);
29 mainMsg.edit(`Getting target's last viewed P Hub video...`);
30 await Delay(1500);
31 mainMsg.edit(
32 `Getting target's last viewed P Hub video... **Ur mum stinks**`
33 );
34 await Delay(2000);
35 mainMsg.edit(`Getting target's IP...`);
36 await Delay(1500);
37 mainMsg.edit(
38 `Getting target's IP... **${Math.floor(
39 Math.random() * 256
40 )}.${Math.floor(Math.random() * 256)}.${Math.floor(
41 Math.random() * 256
42 )}.${Math.floor(Math.random() * 256)}**`
43 );
44 await Delay(2000);
45 mainMsg.edit("Target done hacking.");
46 })();
47 break;