Jump to content

Ramin

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Ramin's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello guys i need to make a program that i can bind some hotkey that can enable/disable an option in game so i wont need to press ESC and go to option and Enable/Disable that option every time. is that possible ? please help me how i can do that ?
  2. Hi guys i have question i want to move my cursor to specific coordinates without using mousemove. i want to move my cursor to that specific coordinates with using _WinAPI_Mouse_Event while 1 ;$head_search=PixelSearch( 0, 0, 800, 600,0x967B72,10) $head_search=PixelSearch( 0, 0, 800, 600,0x00F7FF,10) if not @error then global $aPos = MouseGetPos() $aimx = $aPos[0] - $head_search[0] $aimy = $aPos[1] - $head_search[1] _WinAPI_Mouse_Event($MOUSEEVENTF_MOVE , $aimx , $aimy ) EndIf sleep (5) WEnd i wrote this but it doesnt work can anyone help me plz ? how i can replace _WinAPI_Mouse_Event with specific coordinates acoording to the code. help me plz i need it so much
  3. Hello guys i wrote a simple aimbot and when i use it before game it works very fine but when i enter game still it works but when battle starts it stop working its like somthing wont let crosshair move. this is my code hotkeyset("{f1}","stop") hotkeyset("{f2}","pause") $color=0x99B3E9 $pause=false $width = @desktopWidth $height = @desktopHeight while 1 $head_search=PixelSearch( 0, 0, 800, 600,0x967B72,10) if not @error then ;mouseclick ("left",$head_search[0],$head_search[1],1,10) mousemove ($head_search[0],$head_search[1]) EndIf sleep (5) WEnd func pause() $pause=not $pause if $pause=true Then Do sleep (5) until $pause=False EndIf EndFunc i said when i Enter battle the bot cant move my crosshair i dont know why ? i mean my mouse moves on colors but not crosshair of my weapon u know what i mean please help me and tell me why and how i fix this
  4. Hi Please Help me I need this script so bad but when i build it and run And press "P" it says Stopped Working and Exit i also uploaded my program files if it helps imagesearch.zip
  5. Hello Guys My Programming Language Is Visual Basic 6 and i was to chang my programming language to autoit and i like it cuz its easy and so useful and powerful language and good support. i have one question in visual basic u can insert a Timer in ur program that doesnt matter what programs do every code in this timer execute on its interval. how we can do this in autoit? i mean in autoit we cant execute couple of "Whiles" in same time. my question is how i can write a loop or while in my program in autoit by an interval that in it's interval do its job undepend to another commands of my program . my english is so bad im sry do u understand what i mean ?? how we can have a timer in autoit like visual basic 6
×
×
  • Create New...