Quote:
Originally Posted by elwany
How i Can Use Code Please i Want Tutorial
|
I get what u want ...
you can do it with auto it at least for me since my knowledge for c++ isn't so good so let's start
First you need to the x and y coordinate of the stage 8 ( what ever your resolution ingame )
So if u want to get the postion of the stage 8 button u will use this func in autoit
Code:
$Gettingmouseposition = Mousegetpos()
$xposition = $Gettingmouseposition[0]
$yposition = $Gettingmouseposition[1]
MsgBox(0,"","X =" & $xposition & "Y =" & $yposition)
Or u can easily use the autoit program to get the position
Okay now you have the position ... anyway for resolution 800x600 its 690/328
So now you want to send the mouseclick on the stage 8
In auto it :
Code:
ControlClick("S4 Client","","","left",1,690,328)
S4 Client = the window name
left = the mouseclick
690 = x pos
328 = y pos
if u need any help you can contact me