AFK Bot - Auto requeue, random drop points
Hey, just a little AHK Bot i wrote in a jiffy,
features auto requeue and random drop points (so you won't be stuck with all the other afkers - no one likes to be reported)
Create a new AHK Script, put in the Code and place it in the same folder as bp.png (the picture below, make sure to call it bp.png otherwise the bot wont requeue)
Start PUBG and launch the script afterwards, it'll automaticly queue you up

F10 pauses the script
If enough demand is given i'll upload an executable
Just didn't realy want to wait for approval
features auto requeue and random drop points (so you won't be stuck with all the other afkers - no one likes to be reported)
Sourcecode
Code:
CoordMode, Pixel, Screen
WinActivate, PLAYERUNKNOWN
loop {
Click 134, 55
sleep 70000
Random, rand, 30000, 70000
sleep rand
Send F
loop, 50{
sleep 5000
ImageSearch, OVX, OVY, 0, 0, A_ScreenWidth, A_ScreenHeight, bp.png
if ErrorLevel = 2
MsgBox Could not conduct the second search.
else if ErrorLevel = 1
{
Send {W down}
sleep 1000
Send {W Up}
}
else
{
Click 1700, 950
sleep 1000
Click 850,575
sleep 20000
break
}
}
}
F10::
Pause
Suspend
return
Create a new AHK Script, put in the Code and place it in the same folder as bp.png (the picture below, make sure to call it bp.png otherwise the bot wont requeue)
Start PUBG and launch the script afterwards, it'll automaticly queue you up

F10 pauses the script
If enough demand is given i'll upload an executable
Just didn't realy want to wait for approval


