-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript_Logic.txt
24 lines (21 loc) · 925 Bytes
/
Script_Logic.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def main():
start_league()
print("Please wait 32 Seconds for loading :D") # Most pcs take around 20 seconds for the client opening (please keep yourself logged in)
click_play()
select_bot_queue()
find_match()
while True:
# Continuously monitor and accept matches if in queue
while inqueue():
accept_match()
# Once out of queue, proceed with game actions
select() #The selection
if game_loading(): #Game start time to do actions
while not gamefinish():
wander() #Wanderin in map
time.sleep(5)
time.sleep(50)
levelup() #Checks if there is the level up icon to click it
nextgame() #Starts a new game
find_match() #clicks find match
#Repeat!