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

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowOxygen committed Dec 21, 2019
1 parent c993242 commit 6e02263
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions OxygenX.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ class Counter:

class Main:
def __init__(self):
windll.kernel32.SetConsoleTitleW('OxygenX-0.2 | by ShadowOxygen')
self.version = '0.2'
windll.kernel32.SetConsoleTitleW(f'OxygenX-{self.version} | by ShadowOxygen')
self.printing = Queue()
self.caputer = Queue()
self.hits = Queue()
Expand Down Expand Up @@ -407,7 +408,7 @@ def securedcheck(self, token):
def tite(self):
while self.stop:
windll.kernel32.SetConsoleTitleW(
"OxygenX | "
f"OxygenX-{self.version} | "
f"Hits: {str(Counter.hits)}"
f" | Bad: {str(Counter.bad)}"
f' | Secured: {str(Counter.nfa)}'
Expand Down

0 comments on commit 6e02263

Please sign in to comment.