Skip to content

Commit

Permalink
quality of life improvements aka anti idiot
Browse files Browse the repository at this point in the history
  • Loading branch information
R3CI committed Dec 21, 2024
1 parent d9d9346 commit 91a88f5
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 5 deletions.
4 changes: 4 additions & 0 deletions START.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import os
import time
import webbrowser
if not os.path.exists('src\\wasran.txt'):
webbrowser.open('https://www.youtube.com/watch?v=JEpa3RBnn_I&t')
open('src\\wasran.txt', 'w').write('Was ran!!!! discord.gg/spamming best lime op v2 2024 best tool fortnite free feet')

try:
import requests
Expand Down
1 change: 1 addition & 0 deletions TUTORIAL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://www.youtube.com/watch?v=JEpa3RBnn_I&t
3 changes: 3 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@

choice = ui().ask('Choice')

if choice.startswith('0') and len(choice) == 2:
choice = str(int(choice))

options = {
'>>': lambda: (ui().menu2(), ui().ask('Choice')),
'1': joiner().main,
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DBG = False
VERSION = 2.16
VERSION = 2.17

import sys, os, traceback; sys.dont_write_bytecode = True; os.environ['PYTHONDONTWRITEBYTECODE'] = '1'
import json
Expand Down
1 change: 1 addition & 0 deletions src/plugins/auto_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def __init__(self):
except:
pass

os.startfile(self.currentdir)
messagebox.showinfo('Info', f'Auto updated lime! Updated script can be found on {self.currentdir}\nTokens, proxies, etc are auto converted!')
exit()

Expand Down
9 changes: 7 additions & 2 deletions src/plugins/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(self):
# messagebox.showerror('Info', 'Solver is enabled inside of settings.json and u have not provided the api key inside of settings.json please provide the api key or disable solver in settings.json')

if not self.gettokens():
messagebox.showerror('Info', 'U did not input any tokens into input\\tokens.txt please input them in! (NOT DISCORD BOT TOKENS ACTUAL ACCOUNT TOKENS)')
messagebox.showerror('Info', 'U did not input any tokens into input\\tokens.txt please input them in! (NOT DISCORD BOT TOKENS ACTUAL ACCOUNT TOKENS) run /tokens command on my server to get more info')

def check(self):
for dir in self.dirs:
Expand Down Expand Up @@ -90,9 +90,14 @@ def update_settings(self):
pass

def gettokens(self):
tokens = []
with open('input\\tokens.txt', 'r') as f:
tokens = f.read().splitlines()
tokens_ = f.read().splitlines()

for token_ in tokens_:
token = ''.join(c for c in token_ if c in set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_. '))
tokens.append(token)

random.shuffle(tokens)
log.dbg('Files', tokens)
return tokens
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def errordatabase(text):
'80003': 'Cant self friend',
'50168': 'Not in a VC',
'20028': 'Limited',
'401: Unauthorized': 'Unauthorized',
'401: Unauthorized': 'Invalid',
'Cloudflare': 'Cloudflare',
'captcha_key': 'Hcaptcha',
'Unauthorized': 'Unauthorized',
'Unauthorized': 'Invalid',
'retry_after': 'Limited',
'You need to verify': 'Locked',
'Cannot send messages to this user': 'Disabled DMS',
Expand Down

0 comments on commit 91a88f5

Please sign in to comment.