Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Adolsik authored Nov 8, 2022
1 parent 793fc52 commit 2e8a159
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ def go(working_time):

while time_delayed <= working_time:
time.sleep(3)

# Mouse move
pag.click()
x = random.randint(0, screen_width)
y = random.randint(0, screen_high)
#pag.moveTo(x, y, 0.5)
pag.moveTo(x, y, 0.5)

# Keyboard move
#pag.press(['w', 's', 'a', 'd', 'space'])
pag.press(['w', 's', 'a', 'd', 'space'])

time_delayed += 3
status = "BOTTING IS DONE"
Expand Down

0 comments on commit 2e8a159

Please sign in to comment.