|
You last visited: Today at 21:24
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.
02/21/2009, 09:56
|
#226
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
pepejovi@
its a good suggestion, but i have no idea how to edit itemtype.dat in order to display the quality items.
if u also dont mind skipping this function, then it will be exactly = ELSEpath
CO is dying out and i quit it long time ago, i just have no interest to re-create a couple thousand codes program. if ELSEpath works, stick with it, the max i can do is to modify it
|
|
|
02/21/2009, 17:33
|
#227
|
elite*gold: 0
Join Date: Mar 2008
Posts: 113
Received Thanks: 19
|
Quote:
Originally Posted by Evan Lim
pepejovi@
its a good suggestion, but i have no idea how to edit itemtype.dat in order to display the quality items.
if u also dont mind skipping this function, then it will be exactly = ELSEpath
CO is dying out and i quit it long time ago, i just have no interest to re-create a couple thousand codes program. if ELSEpath works, stick with it, the max i can do is to modify it
|
where to find this "elsepath"?
|
|
|
02/21/2009, 18:44
|
#228
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
pepejovi@
|
|
|
02/22/2009, 05:05
|
#229
|
elite*gold: 0
Join Date: Aug 2005
Posts: 568
Received Thanks: 43
|
hey do u think u could make a auto re log program (i.e out in the password and hit enter)
I think it would need a input box and a method to store the password than click on ok or hit enter key.
|
|
|
02/22/2009, 09:43
|
#230
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
(GAME)Master@
sending password and hit enter, how do u want to activate it?
by pressing a hotkey?
if yes, then:
Code:
msgbox, Hotkey Ctrl+1-3 to activate
password1 = 111
password2 = 222
password3 = 333
^1::
send %password1%{enter}
return
^2::
send %password2%{enter}
return
^3::
send %password3%{enter}
return
|
|
|
02/23/2009, 02:18
|
#231
|
elite*gold: 0
Join Date: Sep 2006
Posts: 25
Received Thanks: 8
|
Evan Lim,
is there now a way to detect the HP value with a PixelLookup? I mean x,y when it isnt red anymore my HP is 50% lets say. And if this the case, sendKey F1 =) is this kind of stuff possible?
and would this send you to autoclickjail ??
edit:
this is not for background, it can be in foreground too.. and if this would work i would like to know howto find out the pixelpositions? where i can check the colors of this pixel..
thanks
|
|
|
02/23/2009, 03:47
|
#232
|
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
|
Evan Lim works great but only one thing it doesnt sell all gold ore to npc when i have like 7 gold ore it doesnt sell them all u think u can fix it?thanks in advance again
|
|
|
02/23/2009, 04:44
|
#233
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
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
|
|
|
02/23/2009, 16:48
|
#234
|
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 473
|
Hey Evan,
Could you please post an example of how to send a click but not like
but something like
Code:
click X[COLOR="Red"]-[/COLOR]5(co'ords),Y[COLOR="Red"]-[/COLOR]20(co'ords)
- is minus
thanks!
|
|
|
02/23/2009, 17:45
|
#235
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
Darkyy@
Code:
x-=5
y-=20
click %x%, %y%
|
|
|
02/23/2009, 17:47
|
#236
|
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 473
|
Quote:
Originally Posted by Evan Lim
Darkyy@
Code:
x-=5
y-=20
click %x%, %y%
|
thanks gotta try now
can you tell me where im wrong :S it doesnt look like im doing it right
Code:
x1=49
y1=72
x2=1010
y2=610
px+=25
py+=34
loop
{
IfWinActive, [Conquer2.0]
{
PixelSearch, Px, Py, x1, y1, x2, y2, 0x0303B8, 10, Fast
if ErrorLevel = 0
{
click %px%,%py%
}
}
}
|
|
|
02/23/2009, 18:12
|
#237
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
Darkyy@
u also need to put rest in between the loop
sleep 0 and sleep 100 does make a huge performance difference on CPU loadage
Code:
x1=49
y1=72
x2=1010
y2=610
loop
{
SLEEP 100
IfWinActive, [Conquer2.0]
{
PixelSearch, Px, Py, %x1%, %y1%, %x2%, %y2%, 0x0303B8, 10, Fast
if ErrorLevel = 0
{
px+=25
py+=34
click %px%,%py%
}
}
}
|
|
|
02/23/2009, 18:17
|
#238
|
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 473
|
Quote:
Originally Posted by Evan Lim
Darkyy@
u also need to put rest in between the loop
sleep 0 and sleep 100 does make a huge performance difference on CPU loadage
Code:
x1=49
y1=72
x2=1010
y2=610
loop
{
SLEEP 100
IfWinActive, [Conquer2.0]
{
PixelSearch, Px, Py, %x1%, %y1%, %x2%, %y2%, 0x0303B8, 10, Fast
if ErrorLevel = 0
{
px+=25
py+=34
click %px%,%py%
}
}
}
|
yeh i usually put sleep between each { and } but i dont know why i didnt write it up there  thanks again
|
|
|
02/24/2009, 01:58
|
#239
|
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
|
Evan Lim sorry for late response um when i have full bag of gold ore it does sell to npc but after i have around 5 or 7 gold ore it stops then program cannot detect the images u think u can fix it thanks in advance again
|
|
|
02/24/2009, 03:26
|
#240
|
elite*gold: 0
Join Date: Mar 2008
Posts: 55
Received Thanks: 2
|
Where is my previous post?
It is gone?
Just want to know how to make AHK could access CO in background, it sound like WinID stuff but i am not really sure how to code it...
Evan, could you provide a simple code that
The programme detect which CO Window i refer to (Chartername check up)
While(not press ^Q)
{
Check HP every 1 sec
if HP < 25%
Send {F1}
}
note: i need to know how to make a programme that works in background.
Thanks
|
|
|
 |
|
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:24.
|
|