Pixel Triggerbot D:

Posts 1630 of 39 · Page 2 of 3
wtf is tht hack anyway? with the moon walk im sure thts not with it.. n also he has no recoil n no spread
Quote Originally Posted by MasterGlitcher View Post
wtf is tht hack anyway? with the moon walk im sure thts not with it.. n also he has no recoil n no spread
Thank You Captain Obvious!

It is Se4n's VIP hack...

Easy To Tell By The name Of His Character

And The fact that Se4n's hack always made the crosshair do that.......god dam i am awesome
well that post sounds like somebody got my triggerbot script from RagerZ and edited it.. i was wondering when i'd see results from that.

however it's not exactly a good idea with the yellow textured heads.. wall hack you'll see their heads constantly so it'll mess with the program. should've left it at enemy name tags, but i bet you already removed that and forgot what the color code is for it
Why would I need to steal code to create something that scans for pixels then clicks..
Code:
if _IsPressed($body) = 1 Then
			$pos = MouseGetPos()
			$coord = PixelSearch(($pos[0] - $radius) , ($pos[1] - $radius) , ($pos[0] + $radius) , ($pos[1] + $radius), $searchcolora, 80)
			If IsArray($coord) = 1 Then
				MouseClick('left')
				
			EndIf
		EndIf
eh give him some slack he could be legit i hope this get sapproved
Bro... didnt I release this on my VIP site and you just leeched it?
HIS HACK WORKS I JUST TESTED!!!
Quote Originally Posted by Danfar View Post
HIS HACK WORKS I JUST TESTED!!!
You stupid fuck, it's not even approved yet.
Quote Originally Posted by Ken Jeong View Post
You stupid fuck, it's not even approved yet.
It's also posted elsewhere.
Please approve... Also, I do not under stand what he means by: "The first time you run it, it'll write a few things to the CAConfig.cfg in your root directory (C).
2 of these are the keys I have been using (capslock and space).
Change them to something else if you want.

List of what you can change the keys to:" and then there are a list of different buttons... Someone help me please
Quote Originally Posted by Hmmmk View Post
Why would I need to steal code to create something that scans for pixels then clicks..
Code:
if _IsPressed($body) = 1 Then
			$pos = MouseGetPos()
			$coord = PixelSearch(($pos[0] - $radius) , ($pos[1] - $radius) , ($pos[0] + $radius) , ($pos[1] + $radius), $searchcolora, 80)
			If IsArray($coord) = 1 Then
				MouseClick('left')
				
			EndIf
		EndIf
LMAO swear to god u have your color variation set to 80? and you only expect it to click only on yellow? that'll mess you up right there. You dont want it to be any higher than 10, but 10 is still probably too much variation.

and also you need to give more details to the MouseClick command.. i dont know why but without defining where to click the mouse, the MouseClick command will move the mouse before clicking so change MouseClick to look like this:

MouseClick("primary", MouseGetPos(0), MouseGetPos(1))

and yes the correct way with MouseGetPos is with () and not []. which would also be better to do instead of declaring the variable $pos

The Proper Way To Set Up Your Code:

Code:
If _IsPressed($body) = 1 Then
  While 1
    $coord = PixelSearch(MouseGetPos(0) - $radius, MouseGetPos(1) - $radius, MouseGetPos(0) + $radius, $MouseGetPos(1) + $radius, $searchcolora, 10)
    If _IsArray($coord) = 1 Then
      MouseClick("primary", MouseGetPos(0), MouseGetPos(1))
      Opt("MouseClickDelay", 0)
      Opt("MouseClickDownDelay, 0)
    EndIf
  WEnd
EndIF
see doing a loop like that would set it to start when $body is pressed, that way you can add an exitloop call when $body is pressed again.. like this:

Code:
If _IsPressed($body) = 1 Then
  While 1
    If _IsPressed($body) = 1 Then ExitLoop
    $coord = PixelSearch(MouseGetPos(0) - $radius, MouseGetPos(1) - $radius, MouseGetPos(0) + $radius, $MouseGetPos(1) + $radius, $searchcolora, 10)
    If _IsArray($coord) = 1 Then
      MouseClick("primary", MouseGetPos(0), MouseGetPos(1))
      Opt("MouseClickDelay", 0)
      Opt("MouseClickDownDelay, 0)
    EndIf
  WEnd
EndIF
But then you gotta remember that there needs to be an adjustable sleep time for each person, since every computer is different.. so do

While 1
Sleep(100).
Bro... this is my fucking triggerbot.
Give credit.
Quote Originally Posted by randomnamekabe View Post
Bro... this is my fucking triggerbot.
Give credit.
Give you credit for what? lmao

I can give you the entire source if it'll shut you up...
Just give him the creds :P but approve this.
Sounds like he knows what he is talking about ^^^^^^^^^^^^^

But will someone please answer my question a few posts up?
Posts 1630 of 39 · Page 2 of 3
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?