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

Commit

Permalink
added permbanned accs saving + edited the version checking system
Browse files Browse the repository at this point in the history
  • Loading branch information
LIL-JABA committed Apr 18, 2024
1 parent 4082732 commit f1e0ac9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 26 deletions.
4 changes: 3 additions & 1 deletion src/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,8 @@ def checker(self, username, password):
self.printinfo()
break
case 4:
with open(f'{self.outpath}/permbanned.txt', 'a', encoding='UTF-8') as file:
file.write(f'{account.logpass}\n')
self.banned += 1
self.checked += 1
self.printinfo()
Expand Down Expand Up @@ -373,7 +375,7 @@ def checker(self, username, password):
check.skins_en(account)
check.balance(account)
skinscount = len(account.skins)
if len(account.skins) == 1 and account.skins[0] == "N/A":
if skinscount == 1 and account.skins[0] == "N/A":
skinscount = -1
if skinscount > 0 and account.banuntil == None:
self.skins += 1
Expand Down
26 changes: 2 additions & 24 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class program():
def __init__(self) -> None:
self.count = 0
self.checked = 0
self.version = '3.17.0.4'
with open("system/ver.txt", 'r') as r:
self.version = r.read().strip()
self.riotlimitinarow = 0
path = os.getcwd()
self.parentpath = os.path.abspath(os.path.join(path, os.pardir))
Expand Down Expand Up @@ -54,8 +55,6 @@ def start(self):
(''.join(colored_name))+colorama.Fore.RESET)
print(sys.center(f'v{self.version}'))

self.CheckIfFirstStart()

if 'beta' in self.version:
print(sys.center(
f'{Fore.YELLOW}You have downloaded the BETA version. It can work unstable and contain some bugs.'))
Expand Down Expand Up @@ -196,27 +195,6 @@ def main(self):
asyncio.run(scheck.main(accounts, self.count, isvalkekersource))
return

def CheckIfFirstStart(self) -> None:
with open("system/xd.txt", 'r+') as r:
if r.read() == '0':
win32api.MessageBox(None,
"""Hello! Looks like it's your first start of ValChecker.
Although you can find the FAQ and the full guide in my discord, I will specify some things here.
What is a Rate Limit? When you send a lot of auth requests from one IP, riot blocks you for some time.
So that's why you should use proxies for checking. If riot bans your IP, you will not be able to login in their launcher or site for ~30 minutes.
Where can I find proxies? Any website you trust, just search for that in the internet. Or you can buy a cheap UHQ proxy method on my discord server.
Where can I find combos? Actually, the answer is the same as with proxies. The internet. But if you want to do combos yourself, you can buy a cheap and effective method on my discord server.
The link to my discord server can be found in the readme section of the github repository or on the ValChecker title screen.
Good luck!""", "Hello!", 0)
r.write("1")


pr = program()
if __name__ == '__main__':
Expand Down
1 change: 1 addition & 0 deletions src/system/ver.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.17.1
1 change: 0 additions & 1 deletion src/system/xd.txt

This file was deleted.

0 comments on commit f1e0ac9

Please sign in to comment.