|
You last visited: Today at 06:25
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.
10/20/2009, 19:04
|
#871
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
demonkk3@
yea sure, editing an existed script should be quite simple
|
|
|
10/21/2009, 06:25
|
#872
|
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
|
Hi evan, Could u make a auto-hunt for my archer, Usually i will be using it in metzone, picking up items is not important, because i just need the kills. Auto-pot if possible (F1 for pots), when hp are less den 50%. And auto-dc when my archer is unable to pot(When run out of pots). Probably it would be good if im able to recordpath as metzone is a big place, i would like to record where it should jump.
I don't know if tis is call background clicks, but it would be good if it works on background so that it carry on botting when im not using the comp.
|
|
|
10/21/2009, 06:41
|
#873
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
123qweasdqwe@
dont know how to make background bots
and if its not background, again COELSE fits all the above requirements
|
|
|
10/21/2009, 07:16
|
#874
|
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
|
Quote:
Originally Posted by Evan Lim
123qweasdqwe@
dont know how to make background bots
and if its not background, again COELSE fits all the above requirements
|
oh alright, thanks alot anyway ^^
|
|
|
10/21/2009, 08:42
|
#875
|
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
|
Hi again.
Could u make me a auto right clicker, for scatter shots, without getting autoclick jailed. I don't need the auto clicker to aim on the monster, on where my cursor is will do.
And if u don't mind, a auto-zap too. As in, auto zap monster with the red hp bar, in mystic castle, reddevils spawn. Using mana pots maybe 5mins once as im wearing a mana bs and have much mana.
|
|
|
10/21/2009, 08:53
|
#876
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
123qweasdqwe@
ok, this is the auto right click part. hold right click for 2+ sec to activate the auto. press right click again to disable
Code:
~$RButton::
settimer, rclick, off
s := A_TickCount
KeyWait, RButton
e := A_TickCount - s
if e > 2000
settimer, rclick, 500
return
rclick:
click, right
return
and assuming u are using 1024x768 client
the zap:
Code:
Red_hex = 0x0303B8
msgbox, Ctrl+Q to pause`nMP pot in F2 slot
settimer, atk, 700
settimer, pot, 300000
return
pot:
send {F2}
return
atk:
PixelSearch, outx, outy, 400, 200, 600, 400,%Red_hex%,,Fast
if ErrorLevel = 0
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
PixelSearch, outx, outy, 100, 50, 900, 600,%Red_hex%,,Fast
if ErrorLevel = 0
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
return
^q::pause
|
|
|
10/21/2009, 08:56
|
#877
|
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
|
Quote:
Originally Posted by Evan Lim
123qweasdqwe@
ok, this is the auto right click part. hold right click for 2+ sec to activate the auto. press right click again to disable
Code:
~$RButton::
settimer, rclick, off
s := A_TickCount
KeyWait, RButton
e := A_TickCount - s
if e > 2000
settimer, rclick, 500
return
rlick:
click, right
return
and assuming u are using 1024x768 client
the zap:
Code:
Red_hex = 0x0303B8
msgbox, Ctrl+Q to pause`nMP pot in F2 slot
settimer, atk, 700
settimer, pot, 300000
return
pot:
send {F2}
return
atk:
PixelSearch, outx, outy, 400, 200, 600, 400,%Red_hex%,,Fast
if ErrorLevel = 1
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
PixelSearch, outx, outy, 100, 50, 900, 600,%Red_hex%,,Fast
if ErrorLevel = 1
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
return
^q::pause
|
I will test it now, and yes 1024x768 is correct. Thanks.
Btw, pretty curious on something, Zoom hack is not created with AHK right?
|
|
|
10/21/2009, 09:01
|
#878
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
123qweasdqwe@
it can be made in ahk
i used to have one around here, but no one update me with the zoom address
so usually when ppl request, i would tell him to give me the address first
as a matter of fact, the script is only few lines
|
|
|
10/21/2009, 09:05
|
#879
|
elite*gold: 0
Join Date: May 2008
Posts: 6
Received Thanks: 0
|
Quote:
Originally Posted by Evan Lim
123qweasdqwe@
it can be made in ahk
i used to have one around here, but no one update me with the zoom address
so usually when ppl request, i would tell him to give me the address first
as a matter of fact, the script is only few lines
|
Hmm, how do i check the zoom address den ?
And does different patch of CO have different address?
|
|
|
10/21/2009, 09:19
|
#880
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
123qweasdqwe
i dont know, there used to be some ppl always release the zoom address along with a bunch of other address like XY coordinate, money, hp, mp...etc
it can be different address in different patches
but if the zoom address is not static, it will be different every time u open a new client
|
|
|
10/21/2009, 21:28
|
#881
|
elite*gold: 0
Join Date: Sep 2009
Posts: 4
Received Thanks: 0
|
QUOTE=Evan Lim;3273427] 123qweasdqwe@
ok, this is the auto right click part. hold right click for 2+ sec to activate the auto. press right click again to disable
Code:
~$RButton::
settimer, rclick, off
s := A_TickCount
KeyWait, RButton
e := A_TickCount - s
if e > 2000
settimer, rclick, 500
return
rlick:
click, right
return
and assuming u are using 1024x768 client
the zap:
Code:
Red_hex = 0x0303B8
msgbox, Ctrl+Q to pause`nMP pot in F2 slot
settimer, atk, 700
settimer, pot, 300000
return
pot:
send {F2}
return
atk:
PixelSearch, outx, outy, 400, 200, 600, 400,%Red_hex%,,Fast
if ErrorLevel = 0
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
PixelSearch, outx, outy, 100, 50, 900, 600,%Red_hex%,,Fast
if ErrorLevel = 0
{
EnvAdd, outx, 20
EnvAdd, outy, 20
click, %outx%, %outy%, right
return
}
return
^q::pause
[/QUOTE]
perfect, it beats the one i struggled to figure out myself lol thank you!
Just wondering,
box one gets error on line 20 : settimer,rclick,off and closes.
as for the second script, how can i time when to pot? i only have minimal mana for example and i'd like to to use the F2 key x amount of seconds/minutes. the 100000 never seams to activate. (whats the conversion into realtime?)
|
|
|
10/21/2009, 23:35
|
#882
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
modelingfrog@
it shoud be rclick, not rlick on line20
1min = 60000ms
so 100000ms is 1.6mins
and in the example script, it said "settimer, pot, 300000" thats, 5mins
|
|
|
10/22/2009, 00:11
|
#883
|
elite*gold: 0
Join Date: Sep 2009
Posts: 4
Received Thanks: 0
|
may i compile these and post them in the bots & macro pages?
|
|
|
10/22/2009, 00:29
|
#884
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
modelingfrog@
do whatever u want with the script
just dont mention my name if u are going to release it
and answer questions or debug urself when users ask u questions
|
|
|
10/22/2009, 01:06
|
#885
|
elite*gold: 0
Join Date: Sep 2009
Posts: 4
Received Thanks: 0
|
considering how little i know, that wouldn't be a good move on my part.
Once i learn more or understand better I will consider it again.
-------------
on another note, i was wondering, off topic,
i started out using AHK to make a specific app.
I wanted to be able to for example in IE7 (1280x800) highlight text on a webpage (anything at all) and past it into a toolbar that in turn, would use its search function to provide results on that.
once the page loaded it would capture text again and past it into the bar once more. repeating the process until i exit. Is this something that can be done? (or should i be using something like autoit for example?)
|
|
|
 |
|
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 06:25.
|
|