-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
soundwork.py
74 lines (68 loc) · 2.54 KB
/
soundwork.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import platform
import sys
from colorama import Fore, Style, init
import progressbar
import time
import subprocess
import signal
from playsound import playsound
yw = Fore.YELLOW
gr = Fore.GREEN
bl = Fore.BLUE
sr = Style.RESET_ALL
sb = Style.BRIGHT
init()
def bMiner_nosound():
time.sleep(1)
print(" \n" + yw + "Connecting to www.minershop.org... Connected." + sr)
time.sleep(2)
print(gr + " HTTP request sent, awaiting response... 200 OK")
time.sleep(1)
print("Lenght: 10701 (10k) [text/html]\n Saving to: 'index.html'" +sr + sb)
time.sleep(1)
for i in progressbar.progressbar(range(100)): time.sleep(0.03)
time.sleep(1)
print(sr + gr + "Saved to 'index.html'\n" + sr)
time.sleep(1)
print(sb + bl + "[-=-=-Miner Shop-=-=-]" + sr)
def bMinerSound():
time.sleep(1)
print(" \n" + yw + "Connecting to www.minershop.org... Connected." + sr)
time.sleep(2)
print(gr + " HTTP request sent, awaiting response... 200 OK")
time.sleep(1)
print("Lenght: 10701 (10k) [text/html]\n Saving to: 'index.html'" +sr + sb)
time.sleep(1)
if platform.system() == "Linux":
p = subprocess.Popen('play-audio ' + './sounds/connect1.mp3 ./sounds/connect2.mp3', shell=True)
elif platform.system() == "Windows":
playsound('.\\sounds\\connect1.mp3', block=False)
playsound('.\\sounds\\connect2.mp3', block=False)
for i in progressbar.progressbar(range(100)): time.sleep(0.03)
time.sleep(1)
print(sr + gr + "Saved to 'index.html'\n" + sr)
time.sleep(1)
print(sb + bl + "[-=-=-Miner Shop-=-=-]" + sr)
def bankSound():
print(" \n" + yw + "Connecting to your Darknet Bank account..." + sr + sb)
time.sleep(1)
if platform.system() == "Linux":
p = subprocess.Popen('play-audio ' + './sounds/connect1.mp3', shell=True)
p = subprocess.Popen('play-audio ' + './sounds/connect2.mp3', shell=True)
elif platform.system() == "Windows":
playsound('.\\sounds\\connect1.mp3', block=False)
playsound('.\\sounds\\connect2.mp3', block=False)
time.sleep(0.4)
for i in progressbar.progressbar(range(100)): time.sleep(0.015)
time.sleep(1)
print(sr + gr + "Connected!\n" + sr)
time.sleep(1)
print(yw + "Welcome to DarkNet Bank!\n" + sr)
def bankNosound():
print(" \n" + yw + "Connecting to your Darknet Bank account..." + sr + sb)
time.sleep(1)
for i in progressbar.progressbar(range(100)): time.sleep(0.015)
time.sleep(1)
print(sr + gr + "Connected!\n" + sr)
time.sleep(1)
print(yw + "Welcome to DarkNet Bank!\n" + sr)