TalkingOverwatch AFK Script

Posts 1–3 of 3 · Page 1 of 1
Overwatch AFK Script
This program bypasses the anti-afk feature in Overwatch. You can use it to derank in competitive.
Code:
import random
import pyautogui as p
import time

def random_movement():
    up_sec,down_sec,left_sec,right_sec = 0,0,0,0
    up_maybe = random.randint(0,1)
    down_maybe = random.randint(0,1)
    left_maybe = random.randint(0,1)
    right_maybe = random.randint(0,1)
    jump = random.randint(0,1)
    if up_maybe == 1:
        up_sec = random.randint(1,6)
    if down_maybe == 1:
        down_sec = random.randint(1,6)
    if left_maybe == 1:
        left_sec = random.randint(1,6)
    if right_maybe == 1:
        right_sec = random.randint(1,6)
    
    return up_sec,down_sec,left_sec,right_sec,jump
def main():
    time.sleep(5)
    for i in range(1,100):
        up,down,left,right,jump = random_movement()
        p.keyDown('w')
        time.sleep(up)
        p.keyUp('w')
        p.keyDown('s')
        time.sleep(down)
        p.keyUp('s')
        p.keyDown('a')
        time.sleep(left)
        p.keyUp('a')
        p.keyDown('d')
        time.sleep(right)
        p.keyUp('d')
        if jump == 1:
            p.press('space')
main()
i tried this on quickplay

works fine BUT you still get the warning if you dont do or receive damage

also you are supposed to babysit it, because you have to manually enter a game every time and choose hero

i mean... thank you but i dont see much the point in this
Quote Originally Posted by echpayday View Post
i tried this on quickplay

works fine BUT you still get the warning if you dont do or receive damage

also you are supposed to babysit it, because you have to manually enter a game every time and choose hero

i mean... thank you but i dont see much the point in this
Some XP farming servers auto restart once the game is over, so if you're planning on leveling up a smurf account or just try to get that sweet Platinum border then this works great with those XP farming servers
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?