Skip to content
This repository was archived by the owner on Jan 30, 2021. It is now read-only.

Commit 6e02263

Browse files
authored
Add files via upload
1 parent c993242 commit 6e02263

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

OxygenX.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ class Counter:
101101

102102
class Main:
103103
def __init__(self):
104-
windll.kernel32.SetConsoleTitleW('OxygenX-0.2 | by ShadowOxygen')
104+
self.version = '0.2'
105+
windll.kernel32.SetConsoleTitleW(f'OxygenX-{self.version} | by ShadowOxygen')
105106
self.printing = Queue()
106107
self.caputer = Queue()
107108
self.hits = Queue()
@@ -407,7 +408,7 @@ def securedcheck(self, token):
407408
def tite(self):
408409
while self.stop:
409410
windll.kernel32.SetConsoleTitleW(
410-
"OxygenX | "
411+
f"OxygenX-{self.version} | "
411412
f"Hits: {str(Counter.hits)}"
412413
f" | Bad: {str(Counter.bad)}"
413414
f' | Secured: {str(Counter.nfa)}'

0 commit comments

Comments
 (0)