Results 1 to 3 of 3

Threaded View

  1. #1
    Frixward's Avatar
    Join Date
    Apr 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1

    Talking 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()

  2. The Following User Says Thank You to Frixward For This Useful Post:

    echpayday (12-13-2018)

Similar Threads

  1. Overwatch:AHK afk script-request
    By Ov_Reaper in forum Overwatch Hacks & Cheats
    Replies: 5
    Last Post: 02-24-2018, 10:24 AM
  2. [Release] Endless Charge Anti-Afk Script
    By dirtyzerg in forum Dragon Nest Hacks & Cheats
    Replies: 58
    Last Post: 08-31-2012, 09:10 AM
  3. [Detected] Inactive Window Anti-AFK script
    By mrkiller222 in forum Dragon Nest Hacks & Cheats
    Replies: 23
    Last Post: 04-30-2012, 08:01 PM
  4. Inactive Window Anti-AFK script.
    By mrkiller222 in forum Dragon Nest Selling / Trading / Buying
    Replies: 0
    Last Post: 12-21-2011, 09:29 AM
  5. AFK Script, With an upgrade
    By bAEHE%HEHE5hr in forum All Points Bulletin Reloaded Hacks
    Replies: 3
    Last Post: 09-11-2011, 06:17 AM