Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Programming
You last visited: Today at 06:23

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Tailor Made Tools/Programs for You - AHK

Discussion on Tailor Made Tools/Programs for You - AHK within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old 09/11/2009, 19:11   #781
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
Unforgiveable@
Code:
msgbox, Ctrl+Q to pause

winget, id, id, [C
X=380
Y=301
loop
{
gosub, rc
sleep 2000
ControlClick, x123 y739,ahk_id %id%,,right
sleep 2000
ControlClick, x152 y746,ahk_id %id%,,right
sleep 2000
}

^q::pause


rc:

    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

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
Evan Lim is offline  
Thanks
1 User
Old 09/11/2009, 21:24   #782
 
elite*gold: 0
Join Date: Apr 2009
Posts: 16
Received Thanks: 0
Quote:
Originally Posted by Evan Lim View Post
Unforgiveable@
Code:
msgbox, Ctrl+Q to pause

winget, id, id, [C
X=380
Y=301
loop
{
gosub, rc
sleep 2000
ControlClick, x123 y739,ahk_id %id%,,right
sleep 2000
ControlClick, x152 y746,ahk_id %id%,,right
sleep 2000
}

^q::pause


rc:

    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

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

Thanks a lot .
Unforgiveable is offline  
Old 09/11/2009, 23:04   #783
 
elite*gold: 0
Join Date: Aug 2006
Posts: 127
Received Thanks: 5
Hello again Evan, am interesting how to make jump or click in specific coordinates in co game, and that clicks looks conquer online coordinates not me screen coordinates, and always jump or click in the same place, also how to make to push on NPC and talk whit it. Thnx
Matic^ is offline  
Old 09/12/2009, 01:33   #784
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
Matic^@
going to a specific coordinates, as mention before, it can be done in proxy
or using the CO path function
not possible with standard macros, as they dont send packets to what coordinate, but only click on the screen to output the coordinate
so what it meant is, sure it can click at a specific coordinate on the client to move, but the character wont go to a specific coordinate
Evan Lim is offline  
Old 09/12/2009, 17:52   #785
 
elite*gold: 0
Join Date: Apr 2005
Posts: 4
Received Thanks: 0
is it possible to create aimbot/speedhack for chinese server?

is it possible for you to create speedhack /aimbot for chinese private server.
evozhu is offline  
Old 09/12/2009, 17:59   #786
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
evozhu@
i dont know how to create those kind of things, u need to provide with the method
Evan Lim is offline  
Old 09/15/2009, 21:19   #787
 
ShadowTro's Avatar
 
elite*gold: 20
Join Date: Jul 2007
Posts: 89
Received Thanks: 31
i want an undetectable background autoclicker that right clicks at point XY with 1 second in between
ShadowTro is offline  
Old 09/15/2009, 22:51   #788
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
ShadowTro@
Code:
x=123
y=123
WinGet, id, id, [C
loop
{
ControlClick, x%x% y%y%,ahk_id %id%,,right
sleep 1000
}
return
Evan Lim is offline  
Old 09/16/2009, 16:35   #789
 
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
Evan Lim can you make taskbar renamer for co and also undo the rename and also saves the rename the taskbar that you renamed on the next of open the program?
Acidburncx is offline  
Old 09/16/2009, 21:32   #790
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
vegetasupersaiyan6@
dont understand ur last part
press Ctrl+R to rename win titles, press again to revert back to original
Code:
Org_name = [Co
New_name = Test

^r::
WinGetActiveTitle, Current_title 

IfNotInString, Current_title, %Org_name%
WinSetTitle, %New_name%,,%Org_name%
else
WinSetTitle, %Org_name%,,%New_name%
return
Evan Lim is offline  
Old 09/17/2009, 19:40   #791
 
elite*gold: 0
Join Date: Mar 2009
Posts: 20
Received Thanks: 18
Quote:
Originally Posted by Evan Lim View Post
vegetasupersaiyan6@
if it doesnt sell, what does the program do?
did it not detect the images?

stickray@
Code:
msgbox, Ctrl + Q to pause
settimer, checkhp, 500

checkhp:
IfWinActive, [Conq
{
PixelSearch, , , 10, 720, 60, 720, 0x0B098F, 10, Fast
if ErrorLevel
{
send {F1}
sleep 1000
}
}
return
^q::pause
is there also an exe program for this .. handy thingy at GW ^^
Wh1teL0tus is offline  
Old 09/17/2009, 23:34   #792
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
Wh1teL0tus@
u have to compile the script urself, and edit minor things to suit ur own needs
thats the only requirement i ask ppl to do
Evan Lim is offline  
Old 09/19/2009, 07:38   #793
 
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
EVan Lim does this works on multiclient?
Acidburncx is offline  
Old 09/19/2009, 08:02   #794
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
vegetasupersaiyan6@
only if the Org_name matches, and activate the desire client to the top most and press the hotkey Ctrl+R
Evan Lim is offline  
Old 09/23/2009, 15:53   #795
 
elite*gold: 0
Join Date: Jun 2009
Posts: 8
Received Thanks: 0
Quote:
Originally Posted by Evan Lim View Post
vegetasupersaiyan6@
if it doesnt sell, what does the program do?
did it not detect the images?

stickray@
Code:
msgbox, Ctrl + Q to pause
settimer, checkhp, 500

checkhp:
IfWinActive, [Conq
{
PixelSearch, , , 10, 720, 60, 720, 0x0B098F, 10, Fast
if ErrorLevel
{
send {F1}
sleep 1000
}
}
return
^q::pause

may be i do wrong can learn me i change y points to make it heal before reach to 50% and result same what i do to make this
love_learn is offline  
Reply

« :) | question »

Similar Threads Similar Threads
Tailer-made Tools thread - make ur dreams come true
10/28/2008 - Conquer Online 2 - 1577 Replies
Closed Thread discontinued due to personal reasons Thanks for the previous support Hi elite users, I am Evan. Not quite well-known in forum due to the fact i only release wicky and unpopular programs...Thx for a1 and others to scan/explain when others flame or questioned me. anyhow, i am a AHK (autohotkey) user, and i like programming more than games. Lets get to the main point: Tell me your ideas, i will try to create a tool that satisfy ur needs Please be specific, examples:
Packet Crafter/CO2/CO 2/Hacks/Tools/Programs
06/27/2007 - CO2 Exploits, Hacks & Tools - 13 Replies
================================================== ================== TCP/IP Packet Injector ====-v1.4-======================================= =================== This Project is designed to be a command line based, portable human IP stack for UNIX-like and Windows systems. The suite is broken down by protocol, and should allow for useful scripting of injected packets from simple shell scripts.
Net Tools /EXE Binder/CO2/Tools/Hacks/Programs
06/26/2007 - CO2 Exploits, Hacks & Tools - 22 Replies
Net Tools is cutting-edge security and network monitoring software for the Internet and Local Area Networks, providing clients with the ability and confidence to meet the challenges of tomorrow's technology. Keeping pace with the industry trends, we offer professional tools that support the latest standards, protocols, software, and hardware for both wired and wireless networks. The main goal is the creation of high quality software. Net Tools is a very strong combination of network scanning,...



All times are GMT +2. The time now is 06:23.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.