This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
63 lines (57 loc) · 1.54 KB
/
main.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
from modules import require_elevation
# Sanity check: try importing all needed packages now to avoid issues later
import os
import sys
import time
import psutil
import ctypes
import win32con
import win32api
import win32gui
import subprocess
import win32process
from modules import globals, ultraux, utils
if __name__ == '__main__':
# Placeholder, only run ultraux for now
ultraux.run_patcher()
# Cool exit message
print("Exiting in 5", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(". ", end="", flush=True)
time.sleep(0.25)
print("4", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(". ", end="", flush=True)
time.sleep(0.25)
print("3", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(". ", end="", flush=True)
time.sleep(0.25)
print("2", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(". ", end="", flush=True)
time.sleep(0.25)
print("1", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(".", end="", flush=True)
time.sleep(0.25)
print(". ", end="", flush=True)
time.sleep(0.25)