-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot.py
More file actions
60 lines (46 loc) · 1.39 KB
/
bot.py
File metadata and controls
60 lines (46 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
from os import path
from botFunctions import *
def startMenu():
print("""\033[1;31;40m
___ ________ ________ __________
|\ \ |\ __ \|\ __ \|\___ ___\
\ \ \ ____________\ \ \|\ /\ \ \|\ \|___ \ \_|
\ \ \ |\____________\ \ __ \ \ \ \ \ \ \ \
\ \ \___\|____________|\ \ \|\ \ \ \_\ \ \ \ \
\ \_______\ \ \_______\ \_______\ \ \__\
\|_______| \|_______|\|_______| \|__|
\033[0;37;40m
""")
print("-= League Of Legends bor created by \033[1;33;40mforsrobin\033[0;37;40m and \033[1;33;40mfrowly\033[0;37;40m =- \n")
def menu():
print("[1] - Start bot")
print("[2] - Setup bot")
print("[3] - Buy bot")
print("[0] - Exit")
def startBot():
while True:
os.system('cls||clear')
#Check if bot config exsists
if not path.exists("settings/bot.conf"):
print("Path does not exsist, please setup your bot first\n")
return
#Start tage game
#startGame()
#champSelect()
#cgangeScreen()
input()
def main():
os.system('cls||clear')
startMenu()
endBot = True
while endBot:
menu()
choice = int(input())
if choice == 1:
startBot()
elif choice == 0:
endBot = False
print("See you soon! c:")
if __name__ == "__main__":
main()