Use at own risk [AHK] Fully AFK Script

Vindeta

Hello world!
Member
Hello world!
Member
Status
Offline
Joined
Feb 17, 2021
Messages
392
Reaction score
72
Welcome everyone!

Today i release you an AFK Script for Apex Legends.

It's features:
- It auto queues for a match and will automatically move and use abilities of your champion to avoid getting kicked due to inactivity.
- After pausing the script, you can simply hover above the AHK icon on your hidden icons and it will show how many matches it has completed.

Guide how to use this:
1.First of all install AutoHotKey [autohotkey.com]
2.Right click on your desctop and create AHK Script
3.Copy the code below
4.Paste it into this file
5.Put your resolution to 1280x768 borderless (others resolutions soon)

PRESS F1 to start / PRESS F2 to stop


Code:
F1::
Games := 0
Loop
{
  Menu, Tray, Tip, Total games played - %Games%
  w.__handle
  Loop
  {
    PixelGetColor, pixcolor, 167, 686
    If (pixcolor = 0xf0f0f0) {
      Mouseclick, left, 157, 719
      sleep, 500
    }
  } until pixcolor != 0xf0f0f0
  Loop
  {
    PixelGetColor, pixcolor2, 1265, 679
    If !(pixcolor2 = 0x00FFFF) {
      Mouseclick, left, 604, 32
      Mouseclick, left, 866, 24
      Mouseclick, left, 727, 23
      sleep, 500
    }
  } until pixcolor2 = 0x00FFFF
  Loop
  {
    PixelGetColor pixcolor3, 602, 100
    PixelGetColor pixcolor5, 1061, 21
    Send, {W down}
    sleep, 300
    Send, {W up}
    Send, {S down}
    sleep, 300
    Send, {S up}
    Send, {A down}
    sleep, 300
    Send, {A up}
    Send, {D down}
    sleep, 300
    Send, {D up}
    sleep, 200
    Send, {Q}
    sleep, 500
    Send, {Z}
    Mouseclick, left
  } until pixcolor3 = 0xE8E8FF or pixcolor5 = 0xF0F0F0
  Send, {Space}
  sleep, 100
  Mouseclick left, 568, 503
  Loop
  {
    PixelGetColor, pixcolor4, 167, 686
    Send, {Space}
    sleep, 100
  } until pixcolor4 = 0xf0f0f0
  Games := Games + 1
}
return
 
F2::
Pause, Toggle
 
Top