Register for your free account! | Forgot your password?

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

  • 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 12/03/2008, 15:29   #46
 
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
Im so confuse on hw to make to work bt all othe command wrk except for auto cast cyclone and auto cast superman i did everything u said bt to no luck
Acidburncx is offline  
Old 12/03/2008, 16:24   #47
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
vegetasupersaiyan6@
dont be stubborn, change it to another hotkey then
like:
Code:
q::
send {!}
send auto cyclone
send {enter}
return

w::
send {!}
send auto superman
send {enter}
return
see if pressing q and w will work
Evan Lim is offline  
Thanks
1 User
Old 12/04/2008, 00:01   #48
 
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
Ty for being so patient with me
Acidburncx is offline  
Old 12/04/2008, 04:33   #49
 
elite*gold: 0
Join Date: Feb 2006
Posts: 988
Received Thanks: 45
it seems that the auto cast cyclone and auto superman the only command nt working bt ty anyway i dont wanna trouble cuz u might be fraustrated on asking u too much favor
Acidburncx is offline  
Old 12/04/2008, 17:00   #50
 
elite*gold: 0
Join Date: Mar 2008
Posts: 34
Received Thanks: 2
evan can you make debug work with last patch 5078?
pitaclon is offline  
Old 12/04/2008, 19:36   #51
 
elite*gold: 0
Join Date: Feb 2008
Posts: 24
Received Thanks: 19
Hey, ELSEbot thread been taken down, can I get new memory address for 5078 or a method for working it out please?
canonsun540 is offline  
Old 12/04/2008, 19:39   #52
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
pitaclon & canonsun540@
patch5078 character address is 0x5DA3B0
and update of debug:
Code:
msgbox, Please login your character`nPress OK to continue.

Process, Exist,Conquer.exe
pid = %ErrorLevel%
ProcessHandle := DllCall("OpenProcess", "int", 2035711, "char", 0, "UInt", PID, "UInt")

if pid = 0
{
    MsgBox, Can not find Conquer.exe
    exitapp
    return
}


WinActivate, ahk_pid %pid%
WinGetTitle, Title, [C
WinGetActiveStats,tt , Width, Height, Xpo, Ypo
ver = %A_OSVersion%


Gui -Caption
Gui, Add, picture,x0 y0,%A_ProgramFiles%\color1.bmp
Gui, Show,x0 y0 w95 h10
PixelGetColor, healthhex, 10, 4
PixelGetColor, hphex, 35, 4
PixelGetColor, mphex, 60, 4
PixelGetColor, pinkhex, 85, 4
gui, destroy

InputBox, name, Enter MainCharacter Name, , , 250,100
SetBatchLines, 1000ms

count=1
counter=1
addressS=0x5D0000

addressSbb:=addressSb
StringSplit, nameArray, name


Loop, 4
{
this_name := nameArray%counter%
Transform, this_name2, asc, %this_name%
SetFormat, integer, hex
this_name2 += 0
StringReplace, this_name2, this_name2, 0x,  , All
namehex=%this_name2%%namehex%
SetFormat, integer, d
counter++
}

loop, 4
{
this_name := nameArray%counter%
Transform, this_name2, asc, %this_name%
SetFormat, integer, hex
this_name2 += 0
StringReplace, this_name2, this_name2, 0x,  , All
namehex2=%this_name2%%namehex2%
SetFormat, integer, d
counter++
}

namehex2=0x%namehex2%
namehex=0x%namehex%

SetFormat, integer, hex

loop 10
{
Tooltip, Searching NameAddress,1,1
}

loop 700000
{

addressS++
VarSetCapacity(outputA, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS, "Uint*", OutputA, "Uint", 4, "Uint *", 0)

if OutputA = %namehex%
{
addressS2:=addressS + 4
VarSetCapacity(outputB, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS2, "Uint*", OutputB, "Uint", 4, "Uint *", 0)
if OutputB = %namehex2%
{
Tooltip,
goto, Start
}

}

}

msgbox, Error`nMain character can not be found!
exitapp
return

Start:
WinGet,idco, ID,%Title%

SetFormat, integer, hex
addressS3:=addressS + 48
addressS4:=addressS3 + 4
SetFormat, integer, d
VarSetCapacity(MainX, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS3, "Uint*", MainX, "Uint", 4, "Uint *", 0)
VarSetCapacity(MainY, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS4, "Uint*", MainY, "Uint", 4, "Uint *", 0)
ControlClick, x200 y270,ahk_id %idco%,,left
ControlClick, x200 y270,ahk_id %idco%,,left
sleep 300
ControlClick, x600 y330,ahk_id %idco%,,left
ControlClick, x600 y330,ahk_id %idco%,,left
sleep 300

VarSetCapacity(mX, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS3, "Uint*", mX, "Uint", 4, "Uint *", 0)
VarSetCapacity(mY, 4)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "UInt", addressS4, "Uint*", mY, "Uint", 4, "Uint *", 0)

BlockInput, on
if mX != %MainX%
{
chk = Yes
}
else
{
if mY = %MainY%
{
chk = No
}
else
{
chk = Yes
}
}

if Width > 900
{
co=1024x768
Xpo += 450
Ypo += 250
}
else
{
co=800x600
Xpo += 350
Ypo += 200
}



StringUpper, addressS, addressS
StringUpper, redhex, redhex
StringReplace, addressS, addressS, 0X, 0x, All
StringReplace, redhex, redhex, 0X, 0x, All

Menu, Tray, Icon, Shell32.dll, 44
Gui, +toolwindow +alwaysontop
Gui, Add, Text, x5 y10 w170 , OS: %ver%
Gui, Add, Text, x5 y+5 w170 , Client: %Title%-%co%
Gui, Add, Text, x5 y+5 w170 , NameAddress: %addressS%
Gui, Add, Text, x5 y+5 w170 , HealthHex: %healthhex%
Gui, Add, Text, x5 y+5 w170 , HPHex: %hphex%
Gui, Add, Text, x5 y+5 w170 , MPHex: %mphex%
Gui, Add, Text, x5 y+5 w170 , PinkHex: %pinkhex%
Gui, Add, Text, x5 y+5 w170 , ControlClick: %chk%

Gui, Show, x%Xpo% y%Ypo%, Debug
sleep 200
Send, {PrintScreen}
Gui, Hide
Run, mspaint.exe
sleep 500
Send, ^v
sleep 500
Send, ^v
BlockInput, off

msgbox, Debug complete!`nPlease provide screenshot in order for me to solve your problem.
Gui, restore
return
GuiClose:
ExitApp




^r::reload
Evan Lim is offline  
Thanks
1 User
Old 12/04/2008, 21:35   #53
 
elite*gold: 0
Join Date: Apr 2007
Posts: 46
Received Thanks: 1
well i dont know if this thread is inactive or not but can i request a simple zoom hack not attached with speed hack or anything (for patch 5078 and possibly automatically updatable)
jake_fraser27 is offline  
Old 12/05/2008, 04:58   #54
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
jake_fraser27@
check this link:

not like i l know the zoom address, but that program will always work if correct memory adderss
(its semi-automatically patch-able, as sometimes work, sometimes doesnt )
Evan Lim is offline  
Thanks
1 User
Old 12/05/2008, 11:19   #55
 
elite*gold: 0
Join Date: Mar 2008
Posts: 34
Received Thanks: 2
ok... but with what program i can change this debug :-/
pitaclon is offline  
Old 12/05/2008, 11:20   #56
 
elite*gold: 0
Join Date: Mar 2008
Posts: 34
Received Thanks: 2
and why dont you update your progams ?
pitaclon is offline  
Old 12/05/2008, 17:14   #57
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
pitaclon@
u dont need to edit the debug, its a complete code
so all u need to do is compile it with ahk
update which program and for what purpose?
Evan Lim is offline  
Old 12/05/2008, 22:27   #58
 
elite*gold: 0
Join Date: Mar 2008
Posts: 34
Received Thanks: 2
Quote:
Originally Posted by Evan Lim View Post
pitaclon@
u dont need to edit the debug, its a complete code
so all u need to do is compile it with ahk
update which program and for what purpose?
i dont know to run all this boot.. i mean i only work at school with pascal... thas all i know... you give me a full program, but i dont know what i must do with it. i must open the debug with a program to reedit it... srry for my english.. :|
pitaclon is offline  
Old 12/05/2008, 23:48   #59
 
elite*gold: 0
Join Date: Jan 2007
Posts: 331
Received Thanks: 361
Do you mean you need the exe pita? Well if thats the Case here it is...

Creds Go to Evan Lim all i did was compile it
Attached Files
File Type: rar Debug 5078.rar (195.6 KB, 44 views)
David5646 is offline  
Old 12/06/2008, 00:45   #60
 
elite*gold: 0
Join Date: Mar 2008
Posts: 34
Received Thanks: 2
Quote:
Originally Posted by David5646 View Post
Do you mean you need the exe pita? Well if thats the Case here it is...

Creds Go to Evan Lim all i did was compile it
i have the exe file... but i dont know how to compile it.... :|
pitaclon 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 05:51.


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.