Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

Added a Python Bot #553

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions afkbot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import pyautogui as pag
import time
import random

while True:
x = random.randint(100,2000)
y = random.randint(500,1000)

pag.moveTo(x,y,0.5)
time.sleep(5)