SouthVietBoiX Posted March 9, 2006 Posted March 9, 2006 hi guys im making a bot for Ran online and i was wondering if i used this script here $window = "Ran Client" ;put window name here $color = 0000 ;put color here WinActivate($window) WinWaitActive($window) ;sometimes it takes a second to activate it $size = WinGetPos($window) While 1 $spot = PixelSearch(0,0,$size[2],$size[3],$color) ;2 is width, 3 is height, i believe if (@error=1) Then MsgBox(0,"oh no","cant find color!") ;comment this line and the next out, and comment the continueloop, if you want it to just keep looping if it catn find it Exit ;ContinueLoop EndIf ;you might also want to move the mouse there first, it looks cooler MouseClick("left",$spot[0],$spot[1]) WEnd then wut do i need to add to make the bot press "Q" everytime my blood is at a specific spot and how do i make a hotkey to start and stop the bot. plz help
Valuater Posted March 9, 2006 Posted March 9, 2006 maybe you should take a look at this game bot builderhttp://www.autoitscript.com/forum/index.php?showtopic=22245#8)
SouthVietBoiX Posted March 9, 2006 Author Posted March 9, 2006 maybe you should take a look at this game bot builderhttp://www.autoitscript.com/forum/index.php?showtopic=22245#8)so how cum it doesnt click wen pixel is found
Valuater Posted March 9, 2006 Posted March 9, 2006 so how cum it doesnt click wen pixel is foundbut it does.. did you try the demo ini file???8)
SouthVietBoiX Posted March 9, 2006 Author Posted March 9, 2006 but it does.. did you try the demo ini file???8)o yea where is it i dutn see a link
Moderators SmOke_N Posted March 9, 2006 Moderators Posted March 9, 2006 Opt('WinTitleMatchMode', 2) Opt('PixelCoordMode', 2); Using 2 because your using client size Opt('MouseCoordMode', 2); Using 2 because your using client size Local $window = "Ran Client";put window name here Local $size = WinGetPos($window) Local $color = 0x000000;put color here If IsArray($size) Then While 1 If Not WinActive($window) Then WinActivate($window) $spot = PixelSearch(0, 0 , $size[2] ,$size[3] ,$color);2 is width, 3 is height, i believe If Not @error And IsArray($spot) Then MouseClick("left",$spot[0],$spot[1]) Else MsgBox(0,"oh no","cant find color!") EndIf Sleep(10) WEnd Else MsgBox(0, 'Error', 'WinGetPos Did not Return An Array') EndIf Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Valuater Posted March 9, 2006 Posted March 9, 2006 (edited) o yea where is it i dutn see a linkits right there... just copy the ini file and save it ( its in the first white box )save it as Curveball.ini8) Edited March 9, 2006 by Valuater
SouthVietBoiX Posted March 9, 2006 Author Posted March 9, 2006 oooo thnx guys one dai i will b pro too =)
Valuater Posted March 9, 2006 Posted March 9, 2006 i am just a hobbyist... look at my avitar ( upper left corner ) 8)
SouthVietBoiX Posted March 9, 2006 Author Posted March 9, 2006 can i ask more i want to finish this bot witout the bot maker how do i set it so the mouse will start seacrhin for the color from the center then soread out cuz my char is wandering off and if i want to make the mouse click like an inch lower then where it saw the color hope its possible
Valuater Posted March 9, 2006 Posted March 9, 2006 (edited) 1learn all you can from the Game-bot builder.... 2Take this Tutorialhttp://www.autoitscript.com/forum/index.php?showtopic=21048#3then apply that to the script above posted by SmOke_N8) Edited March 9, 2006 by Valuater
SouthVietBoiX Posted March 10, 2006 Author Posted March 10, 2006 (edited) ahh i got everything but this part how do u make a specific check on a spot and if the cord is not the color it had b4 then u press a key use for hp healing nvm hehe got it this program rocks almost as hard as u guys Edited March 10, 2006 by SouthVietBoiX
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now