Instale o Steam
iniciar sessão
|
idioma
简体中文 (Chinês simplificado)
繁體中文 (Chinês tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Tcheco)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol — Espanha)
Español-Latinoamérica (Espanhol — América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polonês)
Português (Portugal)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar um problema com a tradução
SendMode Input
#singleInstance, force
SetTitleMatchMode, 3
#IfWinActive Counter-Strike 2
;offset pixels for triggerbot color search (1 pixel because sniper's scope takes up 1 pixel)
offsetX := 1
offsetY := 1
;triggerbot delay in ms
trigger_delay := 30
;color tolerance
tolerance := 10
key_shoot := "LButton"
key_pause_script := "RCtrl"
key_end_script := "End"
key_hold_trigger := "Insert"
autofire := false
previouslyCrouched := false
previouslyTrigger := false
lastColor := 0x000000
HotKey, *%key_shoot%, shoot
HotKey, *%key_pause_script%, pause_script
HotKey, *%key_end_script%, end_script
HotKey, *%key_hold_trigger%, hold_trigger
return
hold_trigger:
MouseGetPos, spotX, spotY
spotX := spotX + offsetX
spotY := spotY + offsetY
if(previouslyTrigger){
PixelGetColor, color, %spotX%, %spotY%, RGB
splitColor(color, r1, g1, b1)
splitColor(lastColor, r2, g2, b2)
if((r1 > r2 + tolerance || r1 < r2 - tolerance) || (g1 > g2 + tolerance || g1 < g2 - tolerance) || (b1 > b2 + tolerance || b1 < b2 - tolerance)){
Sleep %trigger_delay%
Random, tempRand, 30, 50
Click down
Sleep %tempRand%
Click up
}
lastColor := color
}else{
PixelGetColor, lastColor, %spotX%, %spotY%, RGB
previouslyTrigger := true
}
Sleep 20
}
previouslyTrigger := false
return
shoot:
if(autofire){
While GetKeyState(key_shoot, "P"){
Random, tempRand, 30, 50
Click down
Sleep %tempRand%
Click up
Sleep %tempRand%
}
}else{
Click down
KeyWait, %key_shoot%
Click up
}
return
pause_script:
Suspend
return
end_script:
ExitApp
return
splitColor(color, ByRef r, ByRef g, ByRef b)
{
r := color >> 16 & 0xFF
g := color >> 8 & 0xFF
b := color & 0xFF
}
ExitApp
return