Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Valorant
You last visited: Today at 12:59

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Triggerbuff is real?

Discussion on Triggerbuff is real? within the Valorant forum part of the Popular Games category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2022
Posts: 42
Received Thanks: 2
Question Triggerbuff is real?

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?
GermanL4 is offline  
Old 09/03/2023, 09:48   #2


 
ItsGamerDoc's Avatar
 
elite*gold: 137
The Black Market: 252/0/2
Join Date: Sep 2007
Posts: 2,661
Received Thanks: 316
Quote:
Originally Posted by GermanL4 View Post
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?
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}
}
ItsGamerDoc is offline  
Thanks
3 Users
Old 09/03/2023, 10:38   #3
 
elite*gold: 0
Join Date: Jun 2022
Posts: 42
Received Thanks: 2
Question

Quote:
Originally Posted by ItsGamerDoc View Post
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}
}
Thanks!
But then is there any point in buying triggerbot cheats like skyrant if you can just use ahk?
GermanL4 is offline  
Old 09/03/2023, 23:20   #4


 
ItsGamerDoc's Avatar
 
elite*gold: 137
The Black Market: 252/0/2
Join Date: Sep 2007
Posts: 2,661
Received Thanks: 316
Quote:
Originally Posted by GermanL4 View Post
Thanks!
But then is there any point in buying triggerbot cheats like skyrant if you can just use ahk?
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
ItsGamerDoc is offline  
Thanks
1 User
Old 09/04/2023, 01:56   #5
Trade Restricted

 
luxprime's Avatar
 
elite*gold: 0
Join Date: Jul 2022
Posts: 225
Received Thanks: 25
Arrow

Quote:
Originally Posted by ItsGamerDoc View Post
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
True.
luxprime is offline  
Old 09/04/2023, 09:47   #6
 
elite*gold: 0
Join Date: Jun 2022
Posts: 42
Received Thanks: 2
Talking

Quote:
Originally Posted by ItsGamerDoc View Post
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
Ok thank you
GermanL4 is offline  
Old 09/14/2023, 17:56   #7
 
elite*gold: 0
Join Date: Sep 2023
Posts: 2
Received Thanks: 0
Quote:
Originally Posted by ItsGamerDoc View Post
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
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
Hoepixel is offline  
Old 09/14/2023, 19:30   #8
 
elite*gold: 0
Join Date: Sep 2023
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by Hoepixel View Post
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
might not be detected now, but very easy to detect
jbala912 is offline  
Old 09/14/2023, 20:59   #9
 
elite*gold: 0
Join Date: Sep 2023
Posts: 2
Received Thanks: 0
Quote:
Originally Posted by jbala912 View Post
might not be detected now, but very easy to detect
How? By manual mod checks or sm?

Also what would be the best way to closet and not be detected?
Hoepixel is offline  
Old 09/15/2023, 02:03   #10
 
RCrypto90's Avatar
 
elite*gold: 0
Join Date: Sep 2023
Posts: 8
Received Thanks: 1
Detected im banned in 2days thanks
RCrypto90 is offline  
Old 10/04/2023, 02:15   #11
 
elite*gold: 0
Join Date: Oct 2023
Posts: 1
Received Thanks: 0
Quote:
Originally Posted by ItsGamerDoc View Post
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 should i change about the script if i want the triggerbot key to be shift?
exoatic is offline  
Old 10/04/2023, 19:24   #12

 
Afplactican's Avatar
 
elite*gold: 105
Join Date: Jul 2022
Posts: 554
Received Thanks: 90
Quote:
Originally Posted by RCrypto90 View Post
Detected im banned in 2days thanks
Hence you should always be using a good spoofer to protect yourself against situations like these.
Afplactican is offline  
Old 10/04/2023, 22:07   #13
 
elite*gold: 0
Join Date: Sep 2023
Posts: 151
Received Thanks: 18
Quote:
Originally Posted by RCrypto90 View Post
Detected im banned in 2days thanks
-> uses random script off the internet
-> expects it to work against vanguard
-> "im banned wtf"
yuhg232 is offline  
Thanks
1 User
Old 10/05/2023, 11:09   #14

 
elite*gold: 24
Join Date: Jul 2022
Posts: 212
Received Thanks: 47
Quote:
Originally Posted by RCrypto90 View Post
Detected im banned in 2days thanks
Lol.Thank yourself bro. He didn't force you to use it.
Springday7 is offline  
Old 10/12/2023, 08:53   #15

 
Relentless's Avatar
 
elite*gold: 337
Join Date: Jan 2022
Posts: 2,994
Received Thanks: 747
Quote:
Originally Posted by RCrypto90 View Post
Detected im banned in 2days thanks
What do you expect, your using a free cheat with public src code on a mass forum.

Quote:
Originally Posted by exoatic View Post
what should i change about the script if i want the triggerbot key to be shift?
key_hold := "XButton2"

if you wish for it to be shift, change the XButton2 with Shift
Relentless is offline  
Reply


Similar Threads Similar Threads
Did anyone use triggerbuff here?
03/19/2023 - Valorant - 0 Replies
please give a info
[Selling] ✅ REAL INSTAGRAM FOLLOWERS /✅ REAL TWITTER FOLLOWERS/ REAL TIKTOK SUBSCRIBERS/
11/08/2021 - Social Media Trading - 0 Replies
⭐ VISIT OUR WEBSITE TO SEE MORE : https://sellix.io/smmlik ⭕ We sell Hight Quality socail media services Like : ✅ REAL INSTAGRAM FOLLOWERS / LIKES / VIEWS ... MORE ✅ REAL YOUTUBE SUBSCRIBERS / VIEWS / LIKES / DISLIKES ... MORE ✅ REAL TIKTOK SUBSCRIBERS / VIEWS / EXPLORES ... MORE
DoS Hacks V2.4 (Real Inventory With FWM,Real Character,Real HP,Ammo Type,EspBox,+50)
02/27/2019 - Wolfteam Hacks, Bots, Cheats & Exploits - 10 Replies
Finally, DoSHacks V2.3 has been updated All Features > Freeze Weapons Mode Esp CallSign&&HP
[No Oldschool] Real-World2 | We Are Back! - It's Real, It's Fun!
08/12/2010 - Metin2 PServer Advertising - 782 Replies
http://www.abload.de/img/rw2w8c4.png Hallu. Endlich ist es wieder so weit! Real-World2 ist back. Wir entschuldigen uns nochmals dafür, dass wir damals "grundlos" abgehauen sind. Aber dies wird dieses mal nicht passiert ;)
[Release] Real Broadcast (Same as in Real Co)
04/04/2009 - CO2 PServer Guides & Releases - 36 Replies
hey my first release since im back at epvp and the owner from copals asked me for this (that is the reason why i quited his team) so here is the release from the real broadcast. Requirements: one of the lotf sources eyes hands first open the project from your source and go to client.cs, then search for; MyChar.CPs -= 5; you will see the broadcast stuff and replace the whole case for;



All times are GMT +1. The time now is 13:00.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.