- random key input (w,a,s,d,space,ctrl)
- write lol / afk in chat
- Install Python and make sure running the command in termonal :
python --version
| and later on run commands below to install module required module separately. python3 -m pip install pyautogui
python3 -m pip install keyboard
- TO run the bot "
python3 main.py
or watch the video :) - test video 2 (watch my bot die XD): https://youtu.be/35IWyJW0BBk (1min vid)
- anti-ban formula : try playing with a friend
-
focus on valorant.exe : ( if running ) //done
-
Buy Guns for teammates
-
agent select using pyautogui
-
remove keyboard module and use pyautogui only
-
GUI for custom chat inputs :)
-
make ML model with my mode
-
make exe for noobs
- pip install auto-py-to-exe
- and convert into exe
-
special key binding
-
start with valo samall icon on somewhere
-
auto afk detect :) danger zone for campers
now only trash below ..
list = pyautogui.getWindowsWithTitle('VALORANT')
list
[Win32Window(hWnd=263294)]
valorant = list[0]
valorant
Win32Window(hWnd=263294)
valorant.restore()
#"D:\Games\Riot Games\Riot Client\RiotClientServices.exe" --launch-product=valorant --launch-patchline=live
pyautogui.scroll(200)
im = pyautogui.screenshot()
later work for gun buying etc with image and mouse :)
im.save()
global bot_flag
bot_flag = True # will be used to terminate the bot / thread
# creating thread || yes u can pass function XD
t1 = threading.Thread(target = no_afk )
# starting thread || calling no_afk in parallel
t1.start()
while bot_flag == True:
sleep(3)
if keyboard.is_pressed('q'):
bot_flag = False
return
try:
#something
except KeyboardInterrupt:
sys.exit(0)
# did not worled : was not able to focus on the valorant window