Register for your free account! | Forgot your password?

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

  • 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 03/20/2009, 17:28   #346
 
elite*gold: 12
Join Date: Mar 2009
Posts: 383
Received Thanks: 1,317
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.
Alexios is offline  
Old 03/20/2009, 17:48   #347
 
Darkyy's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 472
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...
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
Darkyy is offline  
Old 03/20/2009, 18:28   #348
 
legolas77744's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 11
Received Thanks: 0
hey man can you make a talisman program to put free items in your talismans to sock them?
legolas77744 is offline  
Old 03/20/2009, 21:36   #349
 
dondale8's Avatar
 
elite*gold: 0
Join Date: Mar 2007
Posts: 389
Received Thanks: 23
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...?
dondale8 is offline  
Old 03/21/2009, 00:00   #350
 
Darkyy's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 472
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
Darkyy is offline  
Old 03/21/2009, 01:18   #351
 
dondale8's Avatar
 
elite*gold: 0
Join Date: Mar 2007
Posts: 389
Received Thanks: 23
Quote:
I think that I can make the first bot you wanted but since this is Evans thread and he's the *** 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
dondale8 is offline  
Old 03/21/2009, 03:32   #352
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
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
Evan Lim is offline  
Thanks
1 User
Old 03/21/2009, 03:33   #353
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
legolas77744@
no i cant, but if u know the method, tell me, i might able to do it
Evan Lim is offline  
Old 03/21/2009, 07:02   #354
 
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
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
hellbladelll is offline  
Old 03/21/2009, 15:29   #355
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
hellbladelll@
probably not
Evan Lim is offline  
Old 03/21/2009, 20:57   #356
 
dondale8's Avatar
 
elite*gold: 0
Join Date: Mar 2007
Posts: 389
Received Thanks: 23
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..
dondale8 is offline  
Old 03/22/2009, 11:37   #357
 
elite*gold: 0
Join Date: May 2007
Posts: 101
Received Thanks: 4
can u make me an auto follow? kinda hard plvln waters without it
ipod08 is offline  
Old 03/22/2009, 20:15   #358
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
dondale8@
yes, anything involves left controlclicks will send u to jail

ipod08@
no, follow requires left controlclick
thus will send u to jail
Evan Lim is offline  
Thanks
1 User
Old 03/22/2009, 20:23   #359
 
dondale8's Avatar
 
elite*gold: 0
Join Date: Mar 2007
Posts: 389
Received Thanks: 23
Then ....How Sv and 5bot work with it..? and it's safe..?!
dondale8 is offline  
Old 03/22/2009, 22:31   #360
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
dondale8@
SV requires active client (same)
and 5bot is a proxy just directly sending data packets
Evan Lim 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 10:59.


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.