You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ def main(self): # The main function contains the most important code
24
24
os.system('cls'ifos.name=='nt'else'clear') # Clear the screen
25
25
ifos.name=="nt": # If the system is windows
26
26
print("")
27
-
ctypes.windll.kernel32.SetConsoleTitleA("Nitro Generator and Checker - Made by Drillenissen#4268") # Change the
27
+
ctypes.windll.kernel32.SetConsoleTitleW("Nitro Generator and Checker - Made by Drillenissen#4268") # Change the
28
28
else: # Or if it is unix
29
29
print(f'\33]0;Nitro Generator and Checker - Made by Drillenissen#4268\a', end='', flush=True) # Update title of command prompt
30
30
@@ -70,7 +70,7 @@ def main(self): # The main function contains the most important code
70
70
print(f" Error | {url} ") # Tell the user an error occurred
71
71
72
72
ifos.name=="nt": # If the system is windows
73
-
ctypes.windll.kernel32.SetConsoleTitleA(f"Nitro Generator and Checker - {len(valid)} Valid | {invalid} Invalid - Made by Drillenissen#4268") # Change the title
73
+
ctypes.windll.kernel32.SetConsoleTitleW(f"Nitro Generator and Checker - {len(valid)} Valid | {invalid} Invalid - Made by Drillenissen#4268") # Change the title
74
74
print("")
75
75
else: # If it is a unix system
76
76
print(f'\33]0;Nitro Generator and Checker - {len(valid)} Valid | {invalid} Invalid - Made by Drillenissen#4268\a', end='', flush=True) # Change the title
0 commit comments