Tailor Made Tools/Programs for You - AHK

10/15/2009 02:24 mynameisqwerty#841
1st. Evan thanx for the advice on my other posts =3
2nd. Can you make somthing that will follow a player of my choice when shit clicked (can follow jump pattens)
3rd. thanx
10/15/2009 02:34 Evan Lim#842
mynameisqwerty@
same computer following, possible, but will send u to autoclick jail because of the background clicks
different computer following, also possible, but u will have to provide the XY coordinate address of the person u would like to follow
10/15/2009 02:42 mynameisqwerty#843
you mean i would have to plat the XY like on COELSE and then just jump in the same XY as plotted? i was thinking following like jproxy follow =/ if u can do summet like that
10/15/2009 04:48 Evan Lim#844
mynameisqwerty@
then no, i dont know how to interact with server data package
10/15/2009 18:11 Dark-Zero#845
I need unlock my fps from Conquer...
my fps is always 39 and my computer can handle like 60+
i found a topic with a flash video to how do it but the link is broken..
can u help me?
10/15/2009 19:42 Evan Lim#846
Dark-Zero@
no, i dont know what the method is
10/15/2009 20:58 Dark-Zero#847
i found 2 topics but with i cant do it at this patch.. [Only registered and activated users can see links. Click Here To Register...] and [Only registered and activated users can see links. Click Here To Register...] at second he tryed to explain to me but didnt work... ^^
10/15/2009 21:02 Evan Lim#848
Dark-Zero@
not familiar with Ollydbg
better just ask there and wait for reply
10/15/2009 21:04 Dark-Zero#849
ok i will try talk to him thank you anyway!
10/16/2009 08:56 Zangetsu#850
any way to create an auto clicker with both left and right functions and adjustable rate, and also hold ctrl and spam F1-F10 keys
10/16/2009 10:14 Evan Lim#851
Zangetsu@

Code:
Left_click_speed = 1000 ; in mil-second
Right_click_speed = 1000
F_key_speed = 5000

msgbox, Hold Left or Right Click more than 2 seconds and release to spam`nHold Left Ctrl more than 2 seconds and release to hold Ctrl`nHold F keys more than 2 seconds and release to spam`nTab keys to disable hold or spam`nWorks only in CO client`nPress Ctrl+E to pause

~$LButton::
settimer, lclick, off
s := A_TickCount
KeyWait, LButton
e := A_TickCount - s
if e > 2000
settimer, lclick, %Left_click_speed%
return

~$RButton::
settimer, rclick, off
s := A_TickCount
KeyWait, RButton
e := A_TickCount - s
if e > 2000
settimer, rclick, %Right_click_speed%
return

~$f1::
settimer, f1, off
s := A_TickCount
KeyWait, f1
e := A_TickCount - s
if e > 2000
settimer, f1, %F_key_speed%
return


~$f2::
settimer, f2, off
s := A_TickCount
KeyWait, f2
e := A_TickCount - s
if e > 2000
settimer, f2, %F_key_speed%
return

~$f3::
settimer, f3, off
s := A_TickCount
KeyWait, f3
e := A_TickCount - s
if e > 2000
settimer, f3, %F_key_speed%
return

~$f4::
settimer, f4, off
s := A_TickCount
KeyWait, f4
e := A_TickCount - s
if e > 2000
settimer, f4, %F_key_speed%
return

~$f5::
settimer, f5, off
s := A_TickCount
KeyWait, f5
e := A_TickCount - s
if e > 2000
settimer, f5, %F_key_speed%
return

~$f6::
settimer, f6, off
s := A_TickCount
KeyWait, f6
e := A_TickCount - s
if e > 2000
settimer, f6, %F_key_speed%
return

~$f7::
settimer, f7, off
s := A_TickCount
KeyWait, f7
e := A_TickCount - s
if e > 2000
settimer, f7, %F_key_speed%
return

~$f8::
settimer, f8, off
s := A_TickCount
KeyWait, f8
e := A_TickCount - s
if e > 2000
settimer, f8, %F_key_speed%
return

~$f9::
settimer, f9, off
s := A_TickCount
KeyWait, f9
e := A_TickCount - s
if e > 2000
settimer, f9, %F_key_speed%
return

~$f10::
settimer, f10, off
s := A_TickCount
KeyWait, f10
e := A_TickCount - s
if e > 2000
settimer, f10, %F_key_speed%
return

lclick:
IfWinActive, [Conq
click, left
return

rclick:
IfWinActive, [Conq
click, right
return

f1:
IfWinActive, [Conq
send {f1}
return

f2:
IfWinActive, [Conq
send {f2}
return

f3:
IfWinActive, [Conq
send {f3}
return

f4:
IfWinActive, [Conq
send {f4}
return

f5:
IfWinActive, [Conq
send {f5}
return

f6:
IfWinActive, [Conq
send {f6}
return

f7:
IfWinActive, [Conq
send {f7}
return

f8:
IfWinActive, [Conq
send {f8}
return

f9:
IfWinActive, [Conq
send {f9}
return

f10:
IfWinActive, [Conq
send {f10}
return

^e::pause
10/16/2009 16:31 elewa50#852
i want program that make sound when specific item drop like DragonBall or SoulToken ty
10/16/2009 19:04 Evan Lim#853
elewa50@
search items by name on ground, dont know how
search items by color on ground, what color do u want and u need to know the item id
10/17/2009 10:28 elewa50#854
Quote:
Originally Posted by Evan Lim View Post
elewa50@
search items by name on ground, dont know how
search items by color on ground, what color do u want and u need to know the item id
here is the pic of item , idk how to get the coulor id sorry
[Only registered and activated users can see links. Click Here To Register...]
10/17/2009 16:41 Evan Lim#855
elewa50@
easier way to do this is to find the id, then change the dds image to direct to some pink dds images, then use any regular pixel bots that pick up pink objects like mets/db
go around and ask someone, it should be a pretty popular id along with gems and tokens