Register for your free account! | Forgot your password?

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

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Let's talk about the recent patch and changes

Discussion on Let's talk about the recent patch and changes within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Let's talk about the recent patch and changes

TQ patched the mob/player structure, that's for sure. What I have found so far is:

Code:
PlayerBaseAddress = [0064ff48] (the read value of that address, not the address itself)

PlayerBaseAddress + 0x8D4 = x coordinate
PlayerBaseAddress + 0x8D8 = y coordinate


TargetBaseAddress + 0x18C = x coordinate
TargetBaseAddress + 0x190 = y coordinate


UseSkill Function:
004BB30D - 53                         - push ebx // always 0, I believe
004BB30E - 50                         - push eax // Target ID
004BB30F - ff b7 30 ba 09 00          - push [edi+0009ba30] // Skill ID
004BB315 - e8 e4 28 04 00             - call 004fdbfe



Shift-click Function:
00483C40 - b8 44 58 5c 00             - mov eax,005c5844
00483C45 - e8 c6 e7 0e 00             - call 00572410
00483C4A - 8b 45 08                   - mov eax,[ebp+08]
00483C4D - 83 65 fc 00                - and dword ptr [ebp-04],00
00483C51 - 85 c0                      - test eax,eax
00483C53 - 74 1f                      - je 00483c74
00483C55 - 8b 50 60                   - mov edx,[eax+60]
00483C58 - 89 91 a4 09 00 00          - mov [ecx+000009a4],edx // ebx = Target ID
00483C5E - 8b 80 e4 00 00 00          - mov eax,[eax+000000e4]
00483C64 - 85 c0                      - test eax,eax
00483C66 - 74 0c                      - je 00483c74
00483C68 - 50                         - push eax
00483C69 - 81 c1 78 0a 00 00          - add ecx,00000a78
00483C6F - e8 fc e4 0e 00             - call 00572170
  • The name of a player/mob is now no longer in the player/mob structure. (Well, it might be, but then it's definitely not as plain text)
  • The player base address (or whatever you want to call it) is now dynamic, where it used to be static (0x5DABB8 in the last couple of patches)
IAmHawtness is offline  
Thanks
1 User
Old 05/21/2009, 16:40   #2
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
Well I am a bit busy looking at the anti-bot checks. But here is the call to get the player's address.

0x004FDBFE(1, 0);

They probably changed the name from being in the structure to a pointer. Which makes sense. Having it be a static char[] was very unsafe.


Also I will post in my epvper blog when I find something interesting.
high6 is offline  
Thanks
4 Users
Old 05/21/2009, 16:44   #3
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Quote:
Originally Posted by high6 View Post
Well I am a bit busy looking at the anti-bot checks. But here is the call to get the player's address.

0x004FDBFE(1, 0);

They probably changed the name from being in the structure to a pointer. Which makes sense. Having it be a static char[] was very unsafe.


Also I will post in my epvper blog when I find something interesting.
epvper blog?

And what anti-bot checks? You mean the one that checks if your Conquer.exe is modified?
IAmHawtness is offline  
Thanks
1 User
Old 05/21/2009, 16:50   #4
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
Yup, the checks that are getting people banned right now.

Link to the blog is right under my post count.

Blog Entries: X <- Link


Also I will read the comments and such.

I am using the blog just because I rather have a place that is not full of leechers going "HACK PLZ!!!"
high6 is offline  
Thanks
3 Users
Old 05/21/2009, 16:56   #5
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Quote:
Originally Posted by high6 View Post
Yup, the checks that are getting people banned right now.

Link to the blog is right under my post count.

Blog Entries: X <- Link
Wtf is zfhook.exe and zfws.exe ?

Btw, is it just me, or does this address store the player base address: 0x64ff48?
IAmHawtness is offline  
Old 05/21/2009, 17:04   #6
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
Quote:
Originally Posted by IAmHawtness View Post
Wtf is zfhook.exe and zfws.exe ?

Btw, is it just me, or does this address store the player base address: 0x64ff48?
Probably a chinese CO hack.

Probably, looks that way at first glance.
high6 is offline  
Old 05/21/2009, 17:27   #7
 
clintonselke's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 348
Received Thanks: 2,175
so soon bots will have to be called "notepad.exe" or "mspaint.exe"? (thats what my brother had to do w/ his wow bots)
clintonselke is offline  
Old 05/21/2009, 17:49   #8
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Quote:
Originally Posted by clintonselke View Post
so soon bots will have to be called "notepad.exe" or "mspaint.exe"? (thats what my brother had to do w/ his wow bots)
Haha yeah, typical TQ scanning for processes' NAMES, lol.
IAmHawtness is offline  
Old 05/21/2009, 18:26   #9
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
also, a better way to represent this (at least I think)

Code:
PlayerBaseAddress = [0064ff48] (the read value of that address, not the address itself)

PlayerBaseAddress + 0x8D4 = x coordinate
PlayerBaseAddress + 0x8D8 = y coordinate
is

Code:
ClientInfo = 0x0064ff48;

int PlayerBaseAddress = *(int*)ClientInfo;
PlayerBaseAddress + 0x8D4 = x coordinate
PlayerBaseAddress + 0x8D8 = y coordinate
Although that is just me :P.
high6 is offline  
Old 05/21/2009, 18:34   #10
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
Also the moblist is the same. I may post up the new address later. My only problem is that I rather people learn how to find things rather then just copy and pasting.
high6 is offline  
Old 05/21/2009, 18:45   #11
 
Evan Lim's Avatar
 
elite*gold: 20
Join Date: Oct 2008
Posts: 976
Received Thanks: 668
are u guys talking about the character x,y coordinate address?
it is at x-coordinate 0x64E6CC and +4 for y-coordinate
Evan Lim is offline  
Old 05/21/2009, 19:08   #12
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Quote:
Originally Posted by Evan Lim View Post
are u guys talking about the character x,y coordinate address?
it is at x-coordinate 0x64E6CC and +4 for y-coordinate
We're talking about that the addresses that store the x and y coordinate (along with Player ID, animation, etc.) are now dynamic and not static as they used to be.

Quote:
Originally Posted by high6 View Post
Also the moblist is the same. I may post up the new address later. My only problem is that I rather people learn how to find things rather then just copy and pasting.
Yeah, about that.. did you find out at what offset the name is stored ?
IAmHawtness is offline  
Old 05/21/2009, 19:59   #13
 
elite*gold: 0
Join Date: Mar 2009
Posts: 427
Received Thanks: 479
Quote:
Originally Posted by high6 View Post
Also the moblist is the same. I may post up the new address later. My only problem is that I rather people learn how to find things rather then just copy and pasting.
i have absolutely np finding it myself, i personally prefer to learn how to find things myself then to just be told what it is, only thing is, not sure how to find that address everything else i can find w/o a problem
ookamocka is offline  
Old 05/21/2009, 21:32   #14
 
clintonselke's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 348
Received Thanks: 2,175
I'm about to go to sleep, and thought i might share something first.

I could be wrong , but i think the mobs list starts here

@ 005EBDCC

Code:
CPU Dump
Address   Hex dump                 ASCII
005EBDCC  CF F9 51 00|19 FE 51 00| Q.Q.
005EBDD4  D8 1E 52 00|A5 4C 4F 00| R.LO.
005EBDDC  AC 4C 4F 00|C4 4C 4F 00| LO.LO.
005EBDE4  DC 4C 4F 00|D4 F7 4D 00| LO.M.
The attack function seems to take the structure as its first argument (and i have no idea what the 2nd argument is)

4F8C0A(num1, num2, 0, 1)

as inside it

004F8E32 |. 8B8F E4000000 MOV ECX,DWORD PTR DS:[EDI+0E4]

Puts a pointer to the name of the mob ur attacking into ECX, where EDI is equal to num1 (our first parameter)... And the mob name used to be inside the mob structure b4 the new patch & the first parameter of this attack function used to be the pointer to the struct.... So im guessing since after the patch it still is the pointer to the struct, but they have introduced this new num2 which i think didn't exist b4 the patch.

B4 the new patch, i think i found a pointer value inside the mob structure that leads back to the DequeEx parent structure (i can't really remember)... and the first pointer value inside the mob struct i found when attacking a monster lead to that mob list start address i posted up the top of this message.

Just not 100% sure, bcuz its alot longer than i expected.
clintonselke is offline  
Old 05/21/2009, 21:47   #15
 
elite*gold: 0
Join Date: Jun 2006
Posts: 965
Received Thanks: 576
No, the moblist is at like 0x64XXXX. It is around "ClientInfo".

There is 2 easy ways to find it.

1 You use a multiclient. You have a second character move around while you search the coords. Then you trace back from there.

2 You breakpoint the receive mob packet and go from there.
high6 is offline  
Reply


Similar Threads Similar Threads
Q>about d recent patch offset setting thx.
07/29/2009 - Perfect World - 5 Replies
helow i'm ussing MHS-Bot-PW v2.3 nd i'm playing at phil, d old offset setting doesnt work anymore on d new patch, can anyone kind enaf can give me d new setting thx, sory for d wrong spelling coz i'm using my phone, thank you
Question about recent patch
07/18/2009 - Grand Chase Philippines - 13 Replies
so yeah NAGC was down for a little early today. i successfully used ZID and got hacks and junk that was fine. but when i reloaded the game again with the same addresses they didnt work so i found new ones. Main point:do we have to find new addresses again every time we log on >.<?
Patch 4354 all come and talk about it
04/29/2008 - Conquer Online 2 - 3 Replies
does anyone here know how to fix the 4354 patch problem if anyone here know how to fix the log in problem then we stil lcould bot again
Massive Reduction in Metdoves after Recent Patch
07/28/2006 - Conquer Online 2 - 5 Replies
Has anyone else noticed this? I bot metzone like 5-6 hours a day, and today I log on to do it again, and I quickly realize that there is probably 1/2 the ammount of Doves as there has been in the past. Did TQ remove a majority of them after the patch or what? Because currently metzone looks empty as hell compared to how it used to be.



All times are GMT +2. The time now is 04:37.


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.