|
You last visited: Today at 20:59
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.
01/17/2010, 12:41
|
#961
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
redshadow@
if the method is still the same as old clients (2yrs), in CE u should be searching for 4byte value 2937021546
then increase the addresses value to 2937026666 to test which address is related to
this zoom address is the base zoom, not client zoom
so scrolling in/out does not change the value of the address
|
|
|
01/18/2010, 20:39
|
#962
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
I need
an auto right clicker (that clicks when it sees the red monster bars) (undetectable, and clicks every .5s)
an auto ctrl press (holds it)
with these hotkeys:
ctrl q =pause
left shift to start/stop the auto ctrl
-----------
you have an archer bouncing bot and a auto right clicker, but it doesnt work for a pserver; so can you make it so it'll let me choose what window i want it to work on, and also so itll work in background
---------
thanks
|
|
|
01/19/2010, 02:21
|
#963
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
hellbladelll@
i assume u are requesting 2 separate programs
Code:
redhex=0x0303B8
settimer, getclient, 300
msgbox, 4096,Select Client, Please Activate the client that you want to hook`nThen press OK to continue
settimer, getclient, off
tooltip
if pid < 1
{
reload
return
}
settimer, searchred, 500
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;search red;;;;;;;;;;;;;;;;;;;;;;;
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
ControlClick, x%outx% y%outy%,ahk_pid %pid%,,Right
}
}
else
{
outy+=10
ControlClick, x%outx% y%outy%,ahk_pid %pid%,,Right
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;get client;;;;;;;;;;;;;;;;;;;;;;
getclient:
WinGetActiveTitle, Title
if Title != Select Client
{
WinGet, pid, PID, A
tooltip, Client:%Title% - PID:%pid%,1,1
}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Ctrl;;;;;;;;;;;;;;;;;;;;;;;;;;;;
function:
send {LCtrl down}
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;; hotkey;;;;;;;;;;;;;;;;;;;;;;;;;;;;
^q::pause
Lshift::
SetTimer, function, % (t:=!t) ? "1000" : "Off"
send {LCtrl up}
return
and the bouncing bot too troublesome to make it work (the memory address system needs to rewrite for new patches), so not going to do so
|
|
|
01/19/2010, 08:40
|
#964
|
elite*gold: 0
Join Date: Oct 2008
Posts: 828
Received Thanks: 427
|
yo evan u know how to make bots for auto it?
|
|
|
01/19/2010, 12:59
|
#965
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
SaM.ThE.MaN@
AutoIt, no
|
|
|
01/19/2010, 15:20
|
#966
|
elite*gold: 0
Join Date: Oct 2008
Posts: 828
Received Thanks: 427
|
Aight,
and can u make an aimbot?That each time u right click and your enemy is in range it hits ur target even if you click in the wrong direction
|
|
|
01/19/2010, 20:40
|
#967
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
SaM.ThE.MaN@
no
but it is possible, if u can find the memory address zone for the target "name"
which no one has yet (or release how) to find the zone as it jumps around in a huge range
something similar was made before:
but since the search zone is unknown, it takes more than 20 sec to search, so unless the target name is not moving/out of ur screen, it doesnt make sense
|
|
|
01/19/2010, 21:16
|
#968
|
elite*gold: 0
Join Date: Oct 2008
Posts: 828
Received Thanks: 427
|
ah i c aight no prob
|
|
|
01/27/2010, 14:15
|
#969
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Hi evan, is me again... Long time no see...
Just want to ask you how actually you ask the bot to click on health bar?
i think i need that code..could you please help me on this?
thanks lots
|
|
|
01/27/2010, 14:58
|
#970
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
CObotter@
Code:
#Persistent
redhex=0x0303B8
settimer, searchred, 500
return
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
click %outx% %outy%
}
}
else
{
outy+=10
click %outx% %outy%
}
return
|
|
|
01/27/2010, 15:24
|
#971
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Quote:
Originally Posted by Evan Lim
CObotter@
Code:
#Persistent
redhex=0x0303B8
settimer, searchred, 500
return
searchred:
PixelSearch, outx, outy, 400, 200, 600, 400,%redhex%,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,%redhex%,,Fast
if ErrorLevel
{
return
}
else
{
outy+=10
click %outx% %outy%
}
}
else
{
outy+=10
click %outx% %outy%
}
return
|
Thanks lots...i will try it out now...
Btw, why it need to do double searchpixel?
just curious...
|
|
|
01/27/2010, 15:41
|
#972
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Oh yeah, before i forgot. Is this code working in Background?
cause actually I want to made a bot that heals Guard in background.
So most probably i will use ControlClick, x, y , winID, right.
|
|
|
01/27/2010, 18:02
|
#973
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
CObotter@
searching colors cant be done in background
but controlclick can
|
|
|
01/27/2010, 18:11
|
#974
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Quote:
Originally Posted by Evan Lim
CObotter@
searching colors cant be done in background
but controlclick can
|
But i do remember you did the Background auto level bot before...and thats is also detecting health bar and then click on it on background rite?
I know controlclick (left) will lead to clicky botjail, but I want to use rightclick healthbar on background.
Hm....maybe i need some code to SearchPixel on background window...
you have any cue how to perform this?
|
|
|
01/27/2010, 19:26
|
#975
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Btw, can we perform Controlclick with Holding down other Keyboard key?
|
|
|
 |
|
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 +1. The time now is 21:00.
|
|