Arkadaşlar ben Ahk uzantısının Kodunu Verdim İstediğiniz gibi üstünde oynama yaparak özelleştirebilirsiniz.
Kullanmak için öncelikle
AutoHotkey Programının Cihazınızda kurulu olması gerekiyor.
AutoHotkey: https://www.autohotkey.com/?ref=pfcode
Kurduktan sonra verdiğim kodu not defterine yapıştırıp ahk uzantısına çevirin buton ve rengi kod içerisinden değiştirebilirsiniz
Dosya .ahk uzantılı oldugunda sağ tık yapıp autohotkey ile çalıştır seçenegini seçin
Oyun Tam ekran Modunda Olmalıdır
F4: Tetikleyici Robotu Etkinleştirmek için
XButton1: Tetikleyici
End: Triggerbot'u kapatmak için
Renkleri Pixel_Color'dan değiştirebilirsiniz.
Friends, I am giving the Code of Ahk extension, you can customize it by playing on it as you wish.
To use first
AutoHotkey Program must be installed on your device.
AutoHotkey: https://www.autohotkey.com/?ref=pfcode
After installing, paste the code I gave you into notepad and convert it to ahk extension. You can change the button and color within the code.
When the file has the .ahk extension, right click and select run with autohotkey.
Game Must Be in Full Screen Mode
F4: To Activate Trigger Robot
XButton1: Trigger
End: To close Triggerbot
You can change colors from Pixel_Color.
.ahk:
#NoEnv
#Persistent
#MaxThreadsPerHotkey 2
#KeyHistory 0
ListLines Off
SetBatchLines, -1
SetKeyDelay, -1, -1
SetMouseDelay, -1
SetDefaultMouseSpeed, 0
SetWinDelay, -1
SetControlDelay, -1
SendMode Input
CoordMode, Pixel, Screen
SoundBeep, 300, 200
SoundBeep, 400, 200
key_hold := "XButton1"
pixel_box := 5
pixel_sens := 70
pixel_color := 0xFEFE40 ; (Yellow: 0xFEFE40, Purple: 0xA145A3)
tap_time := 100
Toggle := 0
F4::
Toggle := !Toggle
SetTimer, TriggerAction, % (Toggle ? "On" : "Off")
return
XButton1::
If (Toggle)
{
SetTimer, TriggerAction, % (GetKeyState(key_hold, "P") ? "On" : "Off")
}
else
{
SetTimer, TriggerAction, Off
}
return
TriggerAction:
CoordMode, Pixel, Screen
X1 := A_ScreenWidth // 2 - pixel_box, Y1 := A_ScreenHeight // 2 - pixel_box
X2 := A_ScreenWidth // 2 + pixel_box, Y2 := A_ScreenHeight // 2 + pixel_box
If (GetKeyState(key_hold, "P"))
{
PixelSearch, FoundX, FoundY, %X1%, %Y1%, %X2%, %Y2%, %pixel_color%, %pixel_sens%, Fast RGB
If (ErrorLevel = 0) {
; Color found, perform action
; Simulate mouse click using PostMessage
PostMessage, 0x201, 0x00000001, 0x01f0010f, , VALORANT
PostMessage, 0x202, 0x00000001, 0x01f0010f, , VALORANT
}
}
else
{
SetTimer, TriggerAction, Off
}
return
Son düzenleme: