Tailor Made Tools/Programs for You - AHK

01/17/2010 12:41 Evan Lim#961
redshadow@
if the method is still the same as old clients (2yrs), in CE u should be searching for 4byte value 2937021546
then increase the addresses value to 2937026666 to test which address is related to

this zoom address is the base zoom, not client zoom
so scrolling in/out does not change the value of the address
01/18/2010 20:39 hellbladelll#962
I need
an auto right clicker (that clicks when it sees the red monster bars) (undetectable, and clicks every .5s)
an auto ctrl press (holds it)

with these hotkeys:
ctrl q =pause
left shift to start/stop the auto ctrl
-----------
you have an archer bouncing bot and a auto right clicker, but it doesnt work for a pserver; so can you make it so it'll let me choose what window i want it to work on, and also so itll work in background
---------

thanks
01/19/2010 02:21 Evan Lim#963
hellbladelll@
i assume u are requesting 2 separate programs
Code:
redhex=0x0303B8


settimer, getclient, 300
msgbox, 4096,Select Client, Please Activate the client that you want to hook`nThen press OK to continue 
settimer, getclient, off
tooltip
if pid < 1
{
reload
return
}
settimer, searchred, 500
return

;;;;;;;;;;;;;;;;;;;;;;;;;;;search red;;;;;;;;;;;;;;;;;;;;;;;
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
ControlClick, x%outx% y%outy%,ahk_pid %pid%,,Right
}
}
else
{
outy+=10
ControlClick, x%outx% y%outy%,ahk_pid %pid%,,Right
}
return

;;;;;;;;;;;;;;;;;;;;;;;;;;;;get client;;;;;;;;;;;;;;;;;;;;;;
getclient:
WinGetActiveTitle, Title
if Title != Select Client
{
WinGet, pid, PID, A
tooltip, Client:%Title% - PID:%pid%,1,1
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ctrl;;;;;;;;;;;;;;;;;;;;;;;;;;;;
function:
send {LCtrl down}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;; hotkey;;;;;;;;;;;;;;;;;;;;;;;;;;;;
^q::pause
Lshift::
SetTimer, function, % (t:=!t) ? "1000" : "Off" 
send {LCtrl up}
return
and the bouncing bot too troublesome to make it work (the memory address system needs to rewrite for new patches), so not going to do so
01/19/2010 08:40 SaM.ThE.MaN#964
yo evan u know how to make bots for auto it?
01/19/2010 12:59 Evan Lim#965
SaM.ThE.MaN@
AutoIt, no
01/19/2010 15:20 SaM.ThE.MaN#966
Aight,
and can u make an aimbot?That each time u right click and your enemy is in range it hits ur target even if you click in the wrong direction
01/19/2010 20:40 Evan Lim#967
SaM.ThE.MaN@
no
but it is possible, if u can find the memory address zone for the target "name"
which no one has yet (or release how) to find the zone as it jumps around in a huge range
something similar was made before:
[Only registered and activated users can see links. Click Here To Register...]
but since the search zone is unknown, it takes more than 20 sec to search, so unless the target name is not moving/out of ur screen, it doesnt make sense
01/19/2010 21:16 SaM.ThE.MaN#968
ah i c aight no prob
01/27/2010 14:15 CObotter#969
Hi evan, is me again... Long time no see...

Just want to ask you how actually you ask the bot to click on health bar?
i think i need that code..could you please help me on this?
thanks lots
01/27/2010 14:58 Evan Lim#970
CObotter@
Code:
#Persistent
redhex=0x0303B8
settimer, searchred, 500
return
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
click %outx% %outy%
}
}
else
{
outy+=10
click %outx% %outy%
}
return
01/27/2010 15:24 CObotter#971
Quote:
Originally Posted by Evan Lim View Post
CObotter@
Code:
#Persistent
redhex=0x0303B8
settimer, searchred, 500
return
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
click %outx% %outy%
}
}
else
{
outy+=10
click %outx% %outy%
}
return

Thanks lots...i will try it out now...
Btw, why it need to do double searchpixel?
just curious...
01/27/2010 15:41 CObotter#972
Oh yeah, before i forgot. Is this code working in Background?
cause actually I want to made a bot that heals Guard in background.
So most probably i will use ControlClick, x, y , winID, right.
01/27/2010 18:02 Evan Lim#973
CObotter@
searching colors cant be done in background
but controlclick can
01/27/2010 18:11 CObotter#974
Quote:
Originally Posted by Evan Lim View Post
CObotter@
searching colors cant be done in background
but controlclick can
But i do remember you did the Background auto level bot before...and thats is also detecting health bar and then click on it on background rite?
I know controlclick (left) will lead to clicky botjail, but I want to use rightclick healthbar on background.

Hm....maybe i need some code to SearchPixel on background window...
you have any cue how to perform this?
01/27/2010 19:26 CObotter#975
Btw, can we perform Controlclick with Holding down other Keyboard key?