YaBoy 0 Posted January 30, 2007 (edited) its done, no mor ehelp Edited January 31, 2007 by YaBoy Share this post Link to post Share on other sites
Uten 9 Posted January 30, 2007 It probably requires some work on your part. Do a search for +aim +bot and take a look at ControlSend, MouseClick and the Pixel* functions in the help file. Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling Share this post Link to post Share on other sites
sandyd 0 Posted January 30, 2007 I would write a toggle script. e.g. HotKeySet('{F5}','_ToggleClickingGuardButton') HotKeySet('{F6}','_ExitScript) $GuardButtonX = 100 $GuardButtonY = 200 $KeepClicking = False While 1 If $KeepClicking Then MouseClick('left',$GuardButtonX,$GuardButtonY,1,100) EndIf WEnd Func _ToggleClickingGuardButton() $KeepClicking = Not $KeepClicking EndFunc Func _ExitScript() Exit EndFunc Untested! ----[ SandyD ]--- Share this post Link to post Share on other sites
i542 2 Posted January 30, 2007 (edited) I would write a toggle script. e.g. HotKeySet('{F5}','_ToggleClickingGuardButton') HotKeySet('{F6}','_ExitScript) $GuardButtonX = 100 $GuardButtonY = 200 $KeepClicking = False While 1 If $KeepClicking Then MouseClick('left',$GuardButtonX,$GuardButtonY,1,100) EndIf WEnd Func _ToggleClickingGuardButton() $KeepClicking = Not $KeepClicking EndFunc Func _ExitScript() Exit EndFunc oÝ÷ ÙIízË^w}ÿªê-y.©u©¢²Ö¤z«zØb²+zÛ^¯}ÚºÚ"µÍÝÙ^TÙ] ÌÎNÞÑ_IÌÎNË ÌÎN×ÕÙÙÛPÛXÚÚ[ÑÝX]ÛÌÎNÊBÝÙ^TÙ] ÌÎNÞÑIÌÎNË ÌÎN×Ñ^]ØÜ ÌÎNÊBÌÍÑÝX]ÛHLÌÍÑÝX]ÛHHÌÍÒÙYÛXÚÚ[ÈH[ÙBÚ[HBY ÌÍÒÙYÛXÚÚ[È[[ÝÙPÛXÚÊ ÌÎNÛY ÌÎNË ÌÍÑÝX]Û ÌÍÑÝX]ÛKKL B[YÑ[[ÈÕÙÙÛPÛXÚÚ[ÑÝX]Û B ÌÍÒÙYÛXÚÚ[ÈHÝ ÌÍÒÙYÛXÚÚ[Â[[Â[ÈÑ^]ØÜ B^][[ i542 EDIT: Sig and tags. Edited January 30, 2007 by i542 I can do signature me. Share this post Link to post Share on other sites
_Kurt 2 Posted January 30, 2007 If you're using it to make a BOT, than I would suggest this: Do MouseClick('left', $X, $Y, 1, 100) Until PixelSearch($x, $y, $left, $right, $hex, 10) = @error If you still have trouble understanding this, or you can't get it to work, just tell us and give us a description of what exactly you are having trouble with. Kurt PS: updated avatar & title Awaiting Diablo III.. Share this post Link to post Share on other sites
YaBoy 0 Posted January 30, 2007 (edited) already done Edited January 31, 2007 by YaBoy Share this post Link to post Share on other sites
_Kurt 2 Posted January 30, 2007 Get the coordinates of the guard button, and PixelCheckSum that area. It will detect anything if something changes in that area. Kurt Awaiting Diablo III.. Share this post Link to post Share on other sites
YaBoy 0 Posted January 30, 2007 (edited) no more help needed Edited January 31, 2007 by YaBoy Share this post Link to post Share on other sites