|
You last visited: Today at 23:12
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.
03/07/2009, 20:10
|
#271
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
I need something alot like ELSE, except with a few additional things, heres my description below.
Everything ELSE has + instead of your auto follower, which gets me botjailed in a few mins, can u make like a bot that can be used for 4 accounts per say, and it clicks the "follow" feature on the "Team" selection constantly like every .5 ms.
Also can you update ELSE with this, making your original ELSE + an ELSE (team)
team includes: what i said, along with the "followers" are made sure theyre about a few feet (CO feet, aabout 3inches on my screen) away from the main character, if you need additional information, please tell me so. -thnx for all ur previous work
|
|
|
03/07/2009, 20:59
|
#272
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
hellbladelll@
so basically u want a program that keep clicking on the "follow" button in CO every 0.5 seconds for less or equal than 4 clients
first, denied to edit ELSE, it will be an external program
second, how can i control 3 inches away from character when clicking the "follow" button
third, background left clicks will send to jail
still want this?
|
|
|
03/07/2009, 21:16
|
#273
|
elite*gold: 0
Join Date: Jul 2006
Posts: 396
Received Thanks: 473
|
Hey Evan could you explane how to use the DropDownList and the checking works for GUIs ? and maybe variables :S
example
How can I chose from a dropping down menu wich char to stig from the team. Like i press Member 1 it rightclicks on x,y co ords on member 2 it clicks on x1,y1 co ords :S
Quote:
Gui, 1:Add, Button, x16 y7 w80 h20 , Start
Gui, 1:Add, Button, x15 y36 w83 h20 , Pause
Gui, 1:Add, Button, x25 y69 w59 h20 , Exit
Gui, 1:Add, DropDownList, x94 y113 w-62 h-11 , Member 1
Gui, 1:Add, DropDownList, x6 y99 w100 h21 , Member 1
Gui, 1:Show, x238 y161 h165 w117, New GUI Window
Return
1GuiClose:
ExitApp
ButtonStart:
loop
{
ControlClick x998 y197, water, ,right
sleep 300
ControlClick x108 y746, water, ,right
sleep 12000
ControlClick x149 y743, water, ,right
sleep 1100
ControlClick x998 y197, water, ,right
sleep 1100
}
^q::
pause
return
ButtonPause:
pause
return
ButtonExit:
ExitApp
|
|
|
|
03/07/2009, 23:48
|
#274
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
Quote:
Originally Posted by Evan Lim
hellbladelll@
so basically u want a program that keep clicking on the "follow" button in CO every 0.5 seconds for less or equal than 4 clients
first, denied to edit ELSE, it will be an external program
second, how can i control 3 inches away from character when clicking the "follow" button
third, background left clicks will send to jail
still want this?
|
****....ok can u just make an auto follow clicker for 4 accounts every .5 seconds
|
|
|
03/08/2009, 01:09
|
#275
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
Darkyy@
fill in the xpos and ypos and it should be good
Code:
Gui, 1:Add, DropDownList, w100 vMember choose1 AltSubmit, Member1|Member2|Member3|Member4
Gui, 1:Add, Button, w100 gButtonStart, Start
Gui, 1:Add, Button, w100 gButtonPause, Pause
Gui, 1:Add, Button, w100 gButtonExit, Exit
Gui, 1:Show, , Title
Return
ButtonStart:
Gui, submit, nohide
if Member = 1
{
xpos =
ypos =
}
else if Member = 2
{
xpos =
ypos =
}
else if Member = 3
{
xpos =
ypos =
}
else if Member = 4
{
xpos =
ypos =
}
settimer, function, 1000
return
function:
ControlClick, x%xpos% y%ypos%, WinTitle
return
^q::
ButtonPause:
settimer, function, off
return
GuiClose:
ButtonExit:
ExitApp
hellbladelll@
ok please provide me with the coordinate of the "follow" button using the follow script:
Code:
loop
{
mousegetpos, xx, yy
tooltip, x%xx% y%yy%,1,1
sleep 300
}
then just put in the xpos and ypos in this script, and u are set
Code:
xpos=
ypos=
msgbox, 262148,, please activiate the 1st follower client and press OK
WinGet,id1, ID,[Co
msgbox, 262148,, please activiate the 2nd follower client and press OK
WinGet,id2, ID,[Co
msgbox, 262148,, please activiate the 3rd follower client and press OK
WinGet,id3, ID,[Co
msgbox, 262148,, please activiate the 4th follower client and press OK
WinGet,id4, ID,[Co
settimer, function, 500
return
function:
ControlClick, x%xpos% y%ypos%,ahk_id %id1%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id2%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id3%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id4%,,Left
return
|
|
|
03/08/2009, 01:31
|
#276
|
elite*gold: 0
Join Date: Feb 2008
Posts: 7
Received Thanks: 0
|
Hey, I'm very new to this auto hotkey program, and i was wondering if you could give me a code for an auto-sit hotkey having sit on F3?
|
|
|
03/08/2009, 02:42
|
#277
|
elite*gold: 0
Join Date: Feb 2008
Posts: 7
Received Thanks: 0
|
i mean immediately after jumping, to autosit, so i can regain stamina faster. is this possible?
|
|
|
03/08/2009, 03:18
|
#278
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
81726354@
put F1 as sit, it will press F1 0.1 second right after u press Ctrl+click
Code:
~^Lbutton::
sleep 100
send {F1}
return
|
|
|
03/08/2009, 05:25
|
#279
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
Code:
loop
{
mousegetpos, 470, 70
tooltip, x%xx% y%yy%,1,1
sleep 300
}
heres the other one u sent me
Code:
xpos=
ypos=
msgbox, 262148,, please activiate the 1st follower client and press OK
WinGet,id1, ID,[Co
msgbox, 262148,, please activiate the 2nd follower client and press OK
WinGet,id2, ID,[Co
msgbox, 262148,, please activiate the 3rd follower client and press OK
WinGet,id3, ID,[Co
msgbox, 262148,, please activiate the 4th follower client and press OK
WinGet,id4, ID,[Co
settimer, function, 500
return
function:
ControlClick, x%xpos% y%ypos%,ahk_id %id1%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id2%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id3%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id4%,,Left
return
im sorry, but i cant do much more then fill that in, im not the brightest when it comes to coding.
PS can you upload it in .EXE format please
|
|
|
03/08/2009, 05:30
|
#280
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
hellbladelll@
i provide script only, u need to:
1. install autohotkey
2. open notepad
3. put the codes inside the file and save as "Name.ahk"
4. double click to run the "Name.ahk" program
|
|
|
03/08/2009, 05:45
|
#281
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
Quote:
Originally Posted by Evan Lim
hellbladelll@
i provide script only, u need to:
1. install autohotkey
2. open notepad
3. put the codes inside the file and save as "Name.ahk"
4. double click to run the "Name.ahk" program
|
no way, i actually did it, thnx for kinda pushing me towards doing that all on my own  that being said...
Can you give me the code for an auto right click, auto left click, and auto ctrl click, auto middle click
hotkeys/info:
ctrl Q= pause/start program
delete= pause/start -auto jump (ctrl) /hold ctrl
end= pause/start -auto scatter (right click) /.01(if possible;do lowest)ms
page down= pause/start -auto click (left click) /every 1second
presses f1 whenever i middle click -auto w/e (middle click)/ whenever i press it
|
|
|
03/08/2009, 07:24
|
#282
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
hellbladelll@
Code:
;;;;;;;;;;;;;;;;;;;;;;;;set working client to conquer;;;;;;;;;;;;;;;;;;;;;;;;
#IfWinActive, [Conquer
;;;;;;;;;;;;;;;;;;;;;;;;hotkeys;;;;;;;;;;;;;;;;;;;;;;;;
^q::pause
delete::
toggle1 := !toggle1
SetTimer, HoldCtrl, % toggle1 ? "1000" : "Off"
send {LCtrl up}
return
end::
toggle2 := !toggle2
SetTimer, RightClick, % toggle2 ? "100" : "Off"
return
PgDn::
toggle3 := !toggle3
SetTimer, LeftClick, % toggle3 ? "1000" : "Off"
return
~Mbutton::
send {F1}
return
;;;;;;;;;;;;;;;;;;;;;;;;function;;;;;;;;;;;;;;;;;;;;;;;;
HoldCtrl:
send {LCtrl down}
return
RightClick:
click right
return
LeftClick:
click
return
|
|
|
03/08/2009, 07:52
|
#283
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
Quote:
Originally Posted by Evan Lim
Darkyy@
hellbladelll@
ok please provide me with the coordinate of the "follow" button using the follow script:
Code:
loop
{
mousegetpos, xx, yy
tooltip, x%xx% y%yy%,1,1
sleep 300
}
then just put in the xpos and ypos in this script, and u are set
Code:
xpos=
ypos=
msgbox, 262148,, please activiate the 1st follower client and press OK
WinGet,id1, ID,[Co
msgbox, 262148,, please activiate the 2nd follower client and press OK
WinGet,id2, ID,[Co
msgbox, 262148,, please activiate the 3rd follower client and press OK
WinGet,id3, ID,[Co
msgbox, 262148,, please activiate the 4th follower client and press OK
WinGet,id4, ID,[Co
settimer, function, 500
return
function:
ControlClick, x%xpos% y%ypos%,ahk_id %id1%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id2%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id3%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id4%,,Left
return
|
Code:
loop
{
mousegetpos,485,68
tooltip, x%xx% y%yy%,1,1
sleep 300
}
i cant get this to work, this is wat i have on my thing
Code:
xpos=485
ypos=68
msgbox, 262148,, please activiate the 1st follower client and press OK
WinGet,id1, ID,[Conquer2.0]
msgbox, 262148,, please activiate the 2nd follower client and press OK
WinGet,id2, ID,[Conquer2.0]
msgbox, 262148,, please activiate the 3rd follower client and press OK
WinGet,id3, ID,[Conquer2.0]
msgbox, 262148,, please activiate the 4th follower client and press OK
WinGet,id4, ID,[Conquer2.0]
settimer, function, 500
return
function:
ControlClick, x%xpos% y%ypos%,ahk_id %id1%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id2%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id3%,,Left
ControlClick, x%xpos% y%ypos%,ahk_id %id4%,,Left
return
it asks me to select the accs, then just exits
tell me wat im doing wrong
|
|
|
03/08/2009, 08:16
|
#284
|
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
|
hellbladelll@
add:
at the top
|
|
|
03/08/2009, 10:56
|
#285
|
elite*gold: 0
Join Date: Jul 2008
Posts: 108
Received Thanks: 7
|
WOW theres very little limits on what you cant do, is it possible for you to make an autopotter (not background) that presses F1 once your health is at 30% or less, if its possible take ur time...seriously uve helped me with 2 in a row, very fast
|
|
|
 |
|
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 23:12.
|
|