Tailor Made Tools/Programs for You - AHK

03/20/2009 17:28 Alexios#346
Quote:
Originally Posted by dondale8 View Post
Sure I need Both of Them Not send me Auto Click Jail
Three Faq------
1. How Can I know The Corod [/SIZE][/FONT][/I][/B][/COLOR]( X,Y ) Into Game...?!
2. How Can I Control in Time...?!( In the Bot Code )..
3. Can U Tell me How many clicks do i in Second to enter
Auto Click Jail ...?
--------------------------------
Any Way Thx Alot For Every Thing U did And Will do...^_^
[/LEFT]
You can't make a program that will work(with clicking) on background and not send you at auto click jail.
1. The program I have attached will show you where is the x,y in the active window(exmple: in Conquer) and x,y of the screen.
2. If you mean delay the program for some time. You do it by writing
Code:
Sleep, 1000
1000=1 second.
You can write any number you want there.
3. Even ONE background click will send you at auto click jail after 10 minutes.
03/20/2009 17:48 Darkyy#347
Quote:
Originally Posted by dondale8 View Post
Hey My prof Evan,
How are you..?! Hope Be Good...
I need 2 Bot ..If You don't mind...:handsdown:
My First Bot like Bot of
sanar40
First Bot----------
For Tao
1. Auto Riffle Magic ( Mid=F1 ,Sit=F2 )
2. Hold Ctrl , Right Click on ( X,Y )---- Every 20sec
3. Run Into Background
Second Bot---------
For Tro
1. Press F10 = Xp Skill ----Every 5sec
2. Hold Ctrl , Left Click on ( X,Y )---- Every 2sec
3.Run Into Background
--------------------------------
Sure I need Both of Them Not send me Auto Click Jail
Three Faq------
1. How Can I know The Corod
( X,Y ) Into Game...?!
2. How Can I Control in Time...?!( In the Bot Code )..
3. Can U Tell me How many clicks do i in Second to enter
Auto Click Jail ...?
--------------------------------
Any Way Thx Alot For Every Thing U did And Will do...^_^
1st possible
2nd isnt
03/20/2009 18:28 legolas77744#348
hey man can you make a talisman program to put free items in your talismans to sock them?
03/20/2009 21:36 dondale8#349
Thx Alexios for ur help and post
But there is some thing need to explain
Quote:
3. Even ONE background click will send you at auto click jail after 10 minutes.
and where The program which u attached...?!

Thx Darkyy ur reply and post
Quote:
1st possible
Can u make it..?
Quote:
2nd isnt
Can u be more Clear...need to understand why it's impossible...?!

That's Nice Till now i heared Alexios's opinion and Darkyy Too

What about prof Evan...? Where Evan opinion...?
03/21/2009 00:00 Darkyy#350
Quote:
Originally Posted by dondale8 View Post
Thx Alexios for ur help and post
But there is some thing need to explain

and where The program which u attached...?!

Thx Darkyy ur reply and post

Can u make it..?

Can u be more Clear...need to understand why it's impossible...?!

That's Nice Till now i heared Alexios's opinion and Darkyy Too

What about prof Evan...? Where Evan opinion...?
I think that I can make the first bot you wanted but since this is Evans thread and he's the God of ahk you should just wait for him to do it for you.
@About your 2nd bot you can't make a background program that will left click without going to clickjail
03/21/2009 01:18 dondale8#351
Quote:
I think that I can make the first bot you wanted but since this is Evans thread and he's the God of ahk you should just wait for him to do it for you.
K...Bro i will w8..Thx alot for ur reply and help.
Quote:
@About your 2nd bot you can't make a background program that will left click without going to clickjail
I don't understand...How come..?! In 2nd Bot will send me to clickjail while the 1st bot will run into background and don't send me to clickjail....
Can u explain...what's the meaning of background ? on ur opinion...?! Or what you aim at...?
Background >>it's not necessary to Press Minimize to Be into Taskbar ...
Sorry for i don't understand Some things...
Sorry for bad english...
Thx alot for ur help and ur Reply
03/21/2009 03:32 Evan Lim#352
dondale8@
fill in X and Y and u should be all set (1st request)
2nd request involves left control click, so it does send u to jail, so no
Code:
X =
Y =

msgbox, active the Client you want to hook and press OK
WinGet,id, ID,[C
settimer, aa, 1000
settimer, bb, 20000
aa:
ControlClick, x110 y760,ahk_id %id%,,right
sleep 1000
ControlClick, x160 y760,ahk_id %id%,,right
return
bb:
gosub, rclick
return

^q::pause

rclick:
    hwnd := ControlFromPoint(X, Y, "ahk_id " id,"", cX, cY)
    PostMessage, 0x204, 0x8 | 0x1, cX & 0xFFFF | (cY & 0xFFFF) << 16,, ahk_id %hwnd%
    PostMessage, 0x205, 0x8      , cX & 0xFFFF | (cY & 0xFFFF) << 16,, ahk_id %hwnd%
return
return

ControlFromPoint(X, Y, WinTitle="", WinText="", ByRef cX="", ByRef cY="", ExcludeTitle="", ExcludeText="")
{
    if !(hwnd := WinExist(WinTitle, WinText, ExcludeTitle, ExcludeText))
        return false
    
    VarSetCapacity(pt,8)

    VarSetCapacity(wi,60), NumPut(60,wi)
    DllCall("GetWindowInfo","uint",hwnd,"uint",&wi)
    NumPut(X + (w:=NumGet(wi,4,"int")) - (cw:=NumGet(wi,20,"int")), pt,0)
    NumPut(Y + (h:=NumGet(wi,8,"int")) - (ch:=NumGet(wi,24,"int")), pt,4)
    
    Loop {
        child := DllCall("ChildWindowFromPointEx","uint",hwnd,"int64",NumGet(pt,0,"int64"),"uint",0x5)
        if !child or child=hwnd
            break
      
        DllCall("MapWindowPoints","uint",hwnd,"uint",child,"uint",&pt,"uint",1)
        hwnd := child
    }
    cX := NumGet(pt,0,"int")
    cY := NumGet(pt,4,"int")
    return hwnd
}

return
you can get the XY coordinate by:
Code:
loop
{
mousegetpos, xx, yy
tooltip, x%xx% y%yy%,1,1
sleep 300
}
u can control the time by editting the settimer
for example, 1000 means 1 second, 20000 means 20 seconds
unlimited clicks as long as it does not involve left clicks
03/21/2009 03:33 Evan Lim#353
legolas77744@
no i cant, but if u know the method, tell me, i might able to do it
03/21/2009 07:02 hellbladelll#354
This may be a stupid request, cuz idk if its possible, but can AHK, make an aimbot? if so then

shift + right click on name activates aimbot
ctrl q puase/unpouse
hit target asap, no rest since i control when it goes on, although im not sure about the method, if its not possible, sry for wasting ur time
thnx
03/21/2009 15:29 Evan Lim#355
hellbladelll@
probably not
03/21/2009 20:57 dondale8#356
Thx Prof Evan For Bot..
I have other Question...?U mean any Left click on background will send me click jail..(Even if this click didn't attack any thing ..like just jump and run...?
I don't know what can i said to u..?
Really idk...What make for U...
Thx alot again...Have anice time..
03/22/2009 11:37 ipod08#357
can u make me an auto follow? kinda hard plvln waters without it :(
03/22/2009 20:15 Evan Lim#358
dondale8@
yes, anything involves left controlclicks will send u to jail

ipod08@
no, follow requires left controlclick
thus will send u to jail
03/22/2009 20:23 dondale8#359
Then ....How Sv and 5bot work with it..? and it's safe..?!
03/22/2009 22:31 Evan Lim#360
dondale8@
SV requires active client (same)
and 5bot is a proxy just directly sending data packets