Hi, im looking for an AFK bot for PUBG getting some play time. It could be a mouse macro or smtg else, i havent used any yet. Just cheating on a new account and i think its pretty obvious if i have any kills with 0 playtime.
a friend of mine made one . im not expert at all in these things but he made it to lower his kd and thing worked great. he would leave it during night. ill let him know maxbe you guys can work something outQuote:
Hi, im looking for an AFK bot for PUBG getting some play time. It could be a mouse macro or smtg else, i havent used any yet. Just cheating on a new account and i think its pretty obvious if i have any kills with 0 playtime.
hi, this is what im looking for :D would u or ur friend share it?Quote:
a friend of mine made one . im not expert at all in these things but he made it to lower his kd and thing worked great. he would leave it during night. ill let him know maxbe you guys can work something out
HotKeySet("1",_sendkey)
HotKeySet("2"_stop)
while 1
sleep(50)
WEnd
Func _sendkey()
while 1
Sleep(100)
ControlSend("window name dont now the name bc dont have pubg","","","1");~send every 100 milliseconds the key 1
wend
EndFunc
Func _stop()
EndFunc
Hi, thx for sharing this! :handsdown:I need smtg that auto starts the game, when i die it keeps trying to start the next one. So as just monkeyboyxxx wrote, i could let my pc running whole night and reduce my kd, and increase my playtime / matches.Quote:
so if u just need an bot which presses an key after some seconds , here little autoit example
Code:HotKeySet("1",_sendkey) HotKeySet("2"_stop) while 1 sleep(50) WEnd Func _sendkey() while 1 Sleep(100) ControlSend("window name dont now the name bc dont have pubg","","","1");~send every 100 milliseconds the key 1 wend EndFunc Func _stop() EndFunc
If ProcessExists("pubg.exe") then
while 1
Sleep(100)
ControlSend("window name dont now the name bc dont have pubg","","","1");~send every 100 milliseconds the key 1
wend
else
Run("pubg.exe", "", at symbol+SW_SHOWMINIMIZED)
EndIf
yes, and if its finished, it starts a new match.. and so on...Quote:
its easy too , u can easy add stuff like this
Code:If ProcessExists("pubg.exe") then while 1 Sleep(100) ControlSend("window name dont now the name bc dont have pubg","","","1");~send every 100 milliseconds the key 1 wend else Run("pubg.exe", "", at symbol+SW_SHOWMINIMIZED) EndIf
#edit
or du u mean auto match starter ?