Have someone used triggerbuff before? There are videos in TikTok showcasing this AHK script they sell it for 15$, and I'm wondering if they are legit or no?:handsdown:
lulz no need to pay 15$ here you can have it for free just install AHK and use it as a scriptQuote:
Have someone used triggerbuff before? There are videos in TikTok showcasing this AHK script they sell it for 15$, and I'm wondering if they are legit or no?:handsdown:
Thanks!Quote:
lulz no need to pay 15$ here you can have it for free just install AHK and use it as a script
Default toggle key is set to "XButton2" alter it to a different button if u wish
#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
key_exit := "End"
key_hold := "XButton2"
pixel_box := 3
pixel_sens := 60
leftbound := A_ScreenWidth / 2 - pixel_box
rightbound := A_ScreenWidth / 2 + pixel_box
topbound := A_ScreenHeight / 2 - pixel_box
bottombound := A_ScreenHeight / 2 + pixel_box
Gui +LastFound +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Tab2, x5 y5 w400 h200, Home|Color|Config
Gui, Tab, Home
Gui, Add, Text, x10 y30 w200 h20, Made By: Sunoki
Gui, Add, Button, w100 h50 gStartSearch x10 y70, Start
Gui, Tab, Color
Gui, Add, Button, w100 h50 gSetRedColor x10 y30, Red
Gui, Add, Button, w100 h50 gSetPurpleColor x120 y30, Purple
Gui, Add, Button, w100 h50 gSetYellowColor x230 y30, Yellow
Gui, Tab, Config
Gui, Add, Button, w100 h50 gSaveSettings x10 y30, Hide
Gui, Show
hotkey, %key_exit%, terminate
return
start:
terminate:
Sleep 400
exitapp
return
StartSearch:
settimer, loop2, 20
return
loop2:
While GetKeyState(key_hold, "P"){
If !(GetKeyState("W") || GetKeyState("A") || GetKeyState("S") || GetKeyState("D")) {
PixelSearch()
}
}
return
SetRedColor:
pixel_color := 0xFE636A
return
SetPurpleColor:
pixel_color := 0xEB69FE
return
SetYellowColor:
pixel_color := 0xFFFF55
return
SaveSettings:
Gui, Submit
IniWrite, %pixel_color%, Settings.ini, Settings, PixelColor
IniWrite, %pixel_sens%, Settings.ini, Settings, PixelSensitivity
GuiControl,, SaveStatus, Settings saved.
Sleep 1000
GuiControl,, SaveStatus,
return
LoadSettings:
IniRead, pixel_color, Settings.ini, Settings, PixelColor
IniRead, pixel_sens, Settings.ini, Settings, PixelSensitivity
GuiControl,, PixelSensitivity, %pixel_sens%
GuiControl,, SaveStatus, Settings loaded.
Sleep 1000
GuiControl,, SaveStatus,
return
HideGui:
Gui, 2:Hide
return
#ifWinActive ahk_exe autohotkey.exe
F4::
Gui, 2:Show
Gui, 2:Tab, Home
return
#if
PixelSearch() {
global
PixelSearch, FoundX, FoundY, leftbound, topbound, rightbound, bottombound, pixel_color, pixel_sens, Fast RGB
If !(ErrorLevel)
{
If !GetKeyState("LButton")
{
ClickPixel()
sleep 100
}
}
return
}
ClickPixel() {
SendInput, {Click}
}
Hey! Im very new and i wanted to ask some questions which might seem very dumb but i legitimately dont know this stuffQuote:
No point in buying when you can use for free with AHK it functions the same
Better save monies and invest into something more fun and reliable
might not be detected now, but very easy to detectQuote:
Hey! Im very new and i wanted to ask some questions which might seem very dumb but i legitimately dont know this stuff
As you said that ahk works the same. Do you know what make ahk detectable. There are so many people saying public ahk scripts are detected. But making ur own is okay. Also what makes writing one ud. And what causes one to be detected.
Im just looking to get a little edge by having a triggerbot.
Also what are somethings i must know before getting into this
what should i change about the script if i want the triggerbot key to be shift?Quote:
lulz no need to pay 15$ here you can have it for free just install AHK and use it as a script
Default toggle key is set to "XButton2" alter it to a different button if u wish
#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
key_exit := "End"
key_hold := "XButton2"
pixel_box := 3
pixel_sens := 60
leftbound := A_ScreenWidth / 2 - pixel_box
rightbound := A_ScreenWidth / 2 + pixel_box
topbound := A_ScreenHeight / 2 - pixel_box
bottombound := A_ScreenHeight / 2 + pixel_box
Gui +LastFound +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Tab2, x5 y5 w400 h200, Home|Color|Config
Gui, Tab, Home
Gui, Add, Text, x10 y30 w200 h20, Made By: Sunoki
Gui, Add, Button, w100 h50 gStartSearch x10 y70, Start
Gui, Tab, Color
Gui, Add, Button, w100 h50 gSetRedColor x10 y30, Red
Gui, Add, Button, w100 h50 gSetPurpleColor x120 y30, Purple
Gui, Add, Button, w100 h50 gSetYellowColor x230 y30, Yellow
Gui, Tab, Config
Gui, Add, Button, w100 h50 gSaveSettings x10 y30, Hide
Gui, Show
hotkey, %key_exit%, terminate
return
start:
terminate:
Sleep 400
exitapp
return
StartSearch:
settimer, loop2, 20
return
loop2:
While GetKeyState(key_hold, "P"){
If !(GetKeyState("W") || GetKeyState("A") || GetKeyState("S") || GetKeyState("D")) {
PixelSearch()
}
}
return
SetRedColor:
pixel_color := 0xFE636A
return
SetPurpleColor:
pixel_color := 0xEB69FE
return
SetYellowColor:
pixel_color := 0xFFFF55
return
SaveSettings:
Gui, Submit
IniWrite, %pixel_color%, Settings.ini, Settings, PixelColor
IniWrite, %pixel_sens%, Settings.ini, Settings, PixelSensitivity
GuiControl,, SaveStatus, Settings saved.
Sleep 1000
GuiControl,, SaveStatus,
return
LoadSettings:
IniRead, pixel_color, Settings.ini, Settings, PixelColor
IniRead, pixel_sens, Settings.ini, Settings, PixelSensitivity
GuiControl,, PixelSensitivity, %pixel_sens%
GuiControl,, SaveStatus, Settings loaded.
Sleep 1000
GuiControl,, SaveStatus,
return
HideGui:
Gui, 2:Hide
return
#ifWinActive ahk_exe autohotkey.exe
F4::
Gui, 2:Show
Gui, 2:Tab, Home
return
#if
PixelSearch() {
global
PixelSearch, FoundX, FoundY, leftbound, topbound, rightbound, bottombound, pixel_color, pixel_sens, Fast RGB
If !(ErrorLevel)
{
If !GetKeyState("LButton")
{
ClickPixel()
sleep 100
}
}
return
}
ClickPixel() {
SendInput, {Click}
}
What do you expect, your using a free cheat with public src code on a mass forum.Quote:
Detected im banned in 2days thanks
key_hold := "XButton2"Quote:
what should i change about the script if i want the triggerbot key to be shift?