-
Notifications
You must be signed in to change notification settings - Fork 0
/
launcher.py
29 lines (22 loc) · 1.09 KB
/
launcher.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
import requests, time
print('Welcome to Danked launcher.')
print('''Which mode would you like to use? Type safe or fast.''')
mode = input('> ')
if mode == 'fast':
print('This is the fast version, so expect a ban/blacklist after a few hours.')
print('Downloading the latest version from Github...')
fastCode = requests.get('https://raw.githubusercontent.com/danked-sb/danked/main/fast.py').text
fast_changelog = requests.get('https://github.com/danked-sb/danked/raw/main/cdn/fast_changelog.txt').text
print('\n')
print(f'''CHANGELOG: \n{fast_changelog}''')
time.sleep(1)
exec(fastCode)
elif mode == 'safe':
print('Bans may still occur but it is much more stealthy.')
print('Downloading the latest version from Github...')
saferCode = requests.get('https://raw.githubusercontent.com/danked-sb/danked/main/safe.py').text
safe_changelog = requests.get('https://github.com/danked-sb/danked/raw/main/cdn/safe_changelog.txt').text
print('\n')
print(f'''CHANGELOG: \n{safe_changelog}''')
time.sleep(1)
exec(saferCode)