Tailor Made Tools/Programs for You - AHK

01/27/2010 21:26 Evan Lim#976
CObotter@
no, i never made an background level bot

yes it does exists, it only happens in Vista+ OS (its the saved image that when u put ur cursor over the program icon, it gives a snapshot of the image of the running program in a small box)
but the function was not yet developed by ahk forum. so the answer for that question is still no

supposedly can, but ControlSend doesnt work in CO, so cant do:
ControlSend Ctrl down > ControlClick Right > ControlSend Ctrl up
01/28/2010 05:09 CObotter#977
Thanks again,
Do ControlSendCtrl Down / Up workable on background windows?
01/28/2010 05:28 CObotter#978
when i read the ahk documentation then i tried this

ControlSend, , {Ctrl down}, ahk_id %CO_id%, , ,
but it seem not working...
01/28/2010 11:03 loi101#979
gwapo ko......RONKID FROM OZAMIS IS SUCH A HACKER.........
01/31/2010 03:01 dondale8#980
Hey Prof,...
could you modify this Bot with [Only registered and activated users can see links. Click Here To Register...]..?
Plz Prof This Event will close Soon
I w8 You..
Have Anice Time

Quote:
Originally Posted by Evan Lim View Post
ViRuSeXy@
the Validation will stop the automation
but anyhow, u go on that page, press and focus at the account id box and press Ctrl+Q to run the following script
Code:
x = 0
AcctName = TEST
SetKeyDelay, 30
^q::
x++
send %AcctName%%x%
send {tab}
send 1234567890
send {tab}
send 1234567890
send {tab}
send [EMAIL="[Only registered and activated users can see links. Click Here To Register...]"][Only registered and activated users can see links. Click Here To Register...][/EMAIL]
send {tab}
send [EMAIL="[Only registered and activated users can see links. Click Here To Register...]"][Only registered and activated users can see links. Click Here To Register...][/EMAIL]
send {tab}
send {down}
send {tab}
send TEST
send {tab}
send 12345
send {tab}
send TEST
send {tab}
send 11{tab}11{tab}1999
send {tab}
send 1231231234
send {tab}{tab}
send TEST
return
01/31/2010 04:16 Evan Lim#981
dondale8@
Code:
AcctName = TEST
Password = 1234567890
email = [Only registered and activated users can see links. Click Here To Register...]
name = Name
code = 1234567890
answer = answer


^q::
x++
sleep 500
Send %AcctName%%x%
Send {tab}
sleep 500
Send %Password%
Send {tab}
Send %Password%
Send {tab}
Send %email%
Send {tab}
Send %name%
Send {tab}
Send %code%
Send {tab}
Send {down}
Send {tab}
Send %answer%
return
02/08/2010 21:34 fetmaluxxx#982
is it possible to make spam this function key on minimized/inactive window..
or in the other user of the windows..

so i can still do stuffs while spamming that skill.
like auto heal or something..

Code:
i=0
F10::
i:=!i
SetTimer, Spam, % i ? "0" : "Off" 
return

Spam:
  state:= !state
   if state
  Send {F9 down}
  else
  Send {F9 Up}
return
this is my code..
thanks..
02/09/2010 01:18 Evan Lim#983
fetmaluxxx@
u will need to use ControlClick

Code:
WinGet, id, id, [Co
i=0
F10::
i:=!i
SetTimer, Spam, % i ? "1000" : "Off" 
return

Spam:
ControlClick, x110 y760, ahk_id %id%,,Right  ;<-[color=green] this will press F1 slot at 1024x768 client [/color]
return
02/09/2010 08:38 fetmaluxxx#984
thanks..
is this okay to use?
or i need to put the id first?
02/09/2010 09:20 fetmaluxxx#985

@Evan Lim


sorry i forgot to mention..
this is not for CO..

is it possible to spam function key while on other tab,,
or just spam left click is enough..

but idk where is the position of the Function key..
how to know what's the position?
so i can give it to you..

thanks alot Evan Lim
02/09/2010 16:26 Evan Lim#986
fetmaluxxx@
u sounds like u are on a web browser with multi-tabs
if thats the case, u can forget it about, ControlClick/Send wont work in IE/Firefox/Chrome. the cloest thing that can act background in IE is COM (i have no experience on that matter)

and if its not a browser, u can know the position by using Window Spy that comes with AHK installation or use MouseGetPos in a loop with tooltip displaying the coordinates
02/09/2010 18:23 fetmaluxxx#987
@Evan Lim

i will use it for another game..
im trying to make it autoheal..
i can spam the skill by using that code but i cant make it to work
while on the other client..

can you help me with the codes so i can do that?
thanks..
02/09/2010 19:45 Evan Lim#988
fetaluxxx@
post #987, just change the WinTitle [Co to whatever client name u have
if it doesnt work, that means ur game might not support background clicks, nothing u can do about it
02/14/2010 09:24 1qq2233q#989
I got this little GUI:

Quote:
Gui, Add, button, w50 gOK, ON
Gui, show, w100 h150
return
OK:
---Activate hack-----
But how i get a TAB in it so it will switch between 5 classes. (ninja,warrior,tro,archer,taouist)

So for each class i can add different hacks.

I hope you could help.

Thanks:)
02/14/2010 11:27 Evan Lim#990
1qq2233q@
you mean a drop down list to select from?
Code:
Gui, Add, DropDownList, vColorChoice, Black|White|Red|Green|Blue