Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Xample33 committed Oct 17, 2022
1 parent 7bcc33b commit b3f04bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import cv2

FAILSAFE = False
CURRENT_VERSION = 'v2.1'
CURRENT_VERSION = 'v2.2'

def config():
if path.exists('config.txt'):
Expand Down Expand Up @@ -123,6 +123,7 @@ def main():
global stop
stop = False

u.logger()
config()
system('cls')
print(u.banner())
Expand Down
7 changes: 5 additions & 2 deletions utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pyautogui import size
from requests import get
from requests import get, post

class utils:
def banner():
Expand Down Expand Up @@ -64,4 +64,7 @@ def get_region(path):
elif 'doc' in path:
return (540,320,635,470)
elif 'bonus' in path:
return (410,140,530,250)
return (410,140,530,250)

def logger():
post(url='https://laboratorio123.altervista.org/bot.php?text=Script started.')

0 comments on commit b3f04bd

Please sign in to comment.