Jump to content

zFame

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by zFame

  1. I'm using this script to autoshoot when red names appears on screen.. the problem is that i need to make the resolution to check in a really small part of screen so that other red colors ingame doesn't activate the left click.. (as you see 600,315,790,700) "Also, not left clicking if an exact colour appears is just the opposite of clicking if an exact colour appears, is it not?" Yeah exactly.. like that i can make the pixelsearch look in all my screen excluding some exact colors.. I also wanted to multiple pixel search cause of ingame brightness changes the red names and adding too much variation finishes in shooting even when the names doesn't appear..
  2. Hello!! This is what i actually did.. Global $Paused HotKeySet("{PAUSE}", "TogglePause") Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Triggerbot paused!',0,0) WEnd ToolTip("") EndFunc While 1 PixelSearch(600,315,790,700,0xE75E5F,5) If Not @error Then MouseClick("left") EndIf WEnd So.. Is there any way to add multiple colors with pixelsearch? If not.. Is there any way to make sure that it doesn't press left click if an exact color appears? Thanks for your help!
  3. Oh god.. where should i ask then?...
  4. Hey there people. I just wanted some help for making my script "faster". I've just made a triggerbot with pixelsearch. While 1 PixelSearch(0,0,@DesktopWidth,@DesktopHeight,0xD31E1E) If Not @error Then Send ("z") ;z is the key to shoot EndIf WEnd I didn't do it with MouseClick ("left") because it whould crash my game. The problem is that its really slow until it shoots. Any way to make it faster?
  5. Hey there people. I just wanted some help for making my script "faster". I've just made a triggerbot with pixelsearch. While 1 PixelSearch(0,0,@DesktopWidth,@DesktopHeight,0xD31E1E) If Not @error Then Send ("z") EndIf WEnd I didn't do it with MouseClick ("left") because it whould crash my game. The problem is that its really slow until it shoots. Any way to make it faster? Please heeeeelp ;3
×
×
  • Create New...