Register for your free account! | Forgot your password?

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

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

Advertisement



Client modifications for beginners

Discussion on Client modifications for beginners within the CO2 Programming forum part of the Conquer Online 2 category.

Closed Thread
 
Old 11/12/2015, 10:54   #61


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
Quote:
Originally Posted by Spirited View Post
^ This has nothing to do with reverse engineering the client using ollydbg (which is what this thread is supposed to be about and what this section is supposed to be about). Stop spamming threads with this irrelevant hack requests (forbidden from all sections, by the way).
pls giv me banhammer I wanna smack the **** out of some people nowadays
KraHen is offline  
Old 11/16/2015, 18:31   #62
 
WhyNot555's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 37
Received Thanks: 65
Exclamation

Quote:
Originally Posted by Nare829 View Post
is this even the way to edit aimbot for fb, ss, etc

i mean this
Do you think so?! Stop asking for complicated things that even if explained you will not be able to understand.If you have any questions about the mods mentioned above feel free to ask but stop spamming the thread for other things.
WhyNot555 is offline  
Old 11/17/2015, 02:03   #63
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,214
Received Thanks: 4,118
Quote:
Originally Posted by WhyNot555 View Post
Do you think so?! Stop asking for complicated things that even if explained you will not be able to understand.If you have any questions about the mods mentioned above feel free to ask but stop spamming the thread for other things.
Just report it for spam. That's what I did when I first saw the post. It's a section rule not to spam bot requests - and that applies to all threads within it.
Spirited is offline  
Thanks
1 User
Old 11/18/2015, 00:47   #64
 
elite*gold: 0
Join Date: Jul 2015
Posts: 3
Received Thanks: 0
sorry guys im only 12 just wanted to ask thanks
Nare829 is offline  
Old 11/18/2015, 02:24   #65
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,214
Received Thanks: 4,118
Quote:
Originally Posted by Nare829 View Post
sorry guys im only 12 just wanted to ask thanks
The rules don't discriminate. Read them and even you can interact properly with the community.

Spirited is offline  
Old 11/18/2015, 04:19   #66
 
elite*gold: 0
Join Date: May 2015
Posts: 13
Received Thanks: 1
thanks man very good
islamshemy is offline  
Old 11/26/2015, 21:18   #67
 
elite*gold: 0
Join Date: Nov 2015
Posts: 7
Received Thanks: 0
Hello, i was checking how to bypass server.dat and i found this :



Quote:
Removing the "server.dat is damaged" message so we can connect to private servers/proxies.
Do it manually rather than downloading those patched binaries.

1. Open Conquer in OllyDbg, then load the conquer module into the main CPU window.
2. Right click->Search for->All intermodular calls
3. Click the Destination header to sort alphabetically, then scroll down till you see WS2_32.inet_addr in the destination column (There should be more than one instance of it.)
4. Click on each instance and look at the code. In my version, there 3 are calls to inet_addr, but we only need 2 of those.

Code:
00432A16 |. FF15 50375200 CALL DWORD PTR DS:[<&WS2_32.#11>]; inet_addr
00432A1C |. 83F8 FF CMP EAX,-1
00432A1F |. 74 08 JE SHORT Conquer.00432A29
00432A21 3C 7F CMP AL,7F
00432A23 |. 75 04 JNZ SHORT Conquer.00432A29
00432A25 |. 6A 01 PUSH 1
00432A27 |. 58 POP EAX
00432A28 |. C3 RETN
Code:
004E251C . E8 6BCCF9FF CALL <JMP.&WS2_32.#11>; inet_addr
004E2521 . 83F8 FF CMP EAX,-1
004E2524 . 74 79 JE SHORT Conquer.004E259F
004E2526 3C 7F CMP AL,7F
004E2528 . 74 75 JE SHORT Conquer.004E259F
004E252A . 8B86 04040000 MOV EAX,DWORD PTR DS:[ESI+404]
004E2530 . 8BCB MOV ECX,EBX
004E2532 . FF70 1C PUSH DWORD PTR DS:[EAX+1C]The inet_addr function converts an IP string into a 32-bit integer, for example, 127.0.0.1 becomes 7f 00 00 01.
In the above code, the comparison to localhost is done on the highlighted line, CMP AL,7F. To skip this comparison we can just replace this code with NOP (no operation). Make sure you check "Fill with NOPs" in Olly, because the original instruction is 2 bytes, and thus you need to place 2 NOP instructions there to cover it.

The new code will look like this:

Code:
00432A16 |. FF15 50375200 CALL DWORD PTR DS:[<&WS2_32.#11>]; inet_addr
00432A1C |. 83F8 FF CMP EAX,-1
00432A1F |. 74 08 JE SHORT Conquer.00432A29
00432A21 90 NOP
00432A22 90 NOP

00432A23 |. 75 04 JNZ SHORT Conquer.00432A29
00432A25 |. 6A 01 PUSH 1
00432A27 |. 58 POP EAX
00432A28 |. C3 RETNDo the same for the second one. Job done.
Anyway , i tried to do it , and well i did exactly what it's told, but i still get the server.Dat is damaged problem.

I am using 5065 version client. I found another guide where it's written to put JMP instead of JNZ , but still .. i have the problem of server.dat is damaged , so i was wondering if someone could help me to solve this problem? because the conquerloader and all extern loader are a pain in the ass for the antivirus. Most people don't know how to able it so.. well i really would like a hand to edit this conquer.exe and have the server.dat bypass ( i did many edit to the conquer.exe and all worked , but not this ) Anyway ! thanks a lot.
Alkcairion is offline  
Old 12/03/2015, 11:20   #68
 
WhyNot555's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 37
Received Thanks: 65
I noticed that client modification & clickers give 1 day ban for non vips nowadays.
WhyNot555 is offline  
Old 12/03/2015, 16:23   #69
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,377
Quote:
Originally Posted by WhyNot555 View Post
I noticed that client modification gives 1 day ban for non vips nowadays.
Wait... they legit allow VIPs to cheat?....

Wow just when I thought TQ couldn't get more greedy
pro4never is offline  
Old 12/08/2015, 10:55   #70
 
elite*gold: 0
Join Date: Jun 2015
Posts: 14
Received Thanks: 1
I have a problem with pm commands i anabled it but i dont know how to use it or what it use for please help me
marfof is offline  
Old 12/11/2015, 14:50   #71
 
elite*gold: 0
Join Date: Feb 2009
Posts: 937
Received Thanks: 393
So I can't find the target not in range. I have done the steps but after typing 186DA, clicking on 2nd one.. Then I get different codes. Yes I'm on A 32 bit.

#Edit ; I have a feeling they have changed the codes or I do something wrong lol
jokerboy123 is offline  
Old 12/11/2015, 17:44   #72
 
WhyNot555's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 37
Received Thanks: 65
Quote:
Originally Posted by marfof View Post
I have a problem with pm commands i anabled it but i dont know how to use it or what it use for please help me
You can use the following:
/scale 256 Below 256 >>the screen gets bigger , Above 256 the screen gets smaller. Test and find out what is better for your playing.
/rolescale 75 Below 75 >> characters get smaller, Above 75 characters get bigger. Test and find out what is better for your playing.

Quote:
Originally Posted by jokerboy123 View Post
So I can't find the target not in range. I have done the steps but after typing 186DA, clicking on 2nd one.. Then I get different codes. Yes I'm on A 32 bit.

#Edit ; I have a feeling they have changed the codes or I do something wrong lol
I`ve added a video tutorial at the end of the 1st post, watch it.
WhyNot555 is offline  
Thanks
1 User
Old 12/22/2015, 09:13   #73
 
elite*gold: 0
Join Date: Jun 2015
Posts: 14
Received Thanks: 1
[quote=WhyNot555;33527486]You can use the following:
/scale 256 Below 256 >>the screen gets bigger , Above 256 the screen gets smaller. Test and find out what is better for your playing.
/rolescale 75 Below 75 >> characters get smaller, Above 75 characters get bigger. Test and find out what is better for your playi


thank you man is there more commands ?
marfof is offline  
Old 01/04/2016, 21:09   #74
 
elite*gold: 0
Join Date: Dec 2006
Posts: 5
Received Thanks: 0
the new patch has a new codes ?? plz update it
zenga_2003 is offline  
Old 01/19/2016, 08:46   #75
 
elite*gold: 0
Join Date: Feb 2014
Posts: 5
Received Thanks: 0
hi please add "disable skill range again still work in arab co....
mrcaesar is offline  
Closed Thread


Similar Threads Similar Threads
[SHARE] Interlude Preconfigured pack +Custom Client Modifications for Newbies
11/16/2022 - Lin2 Private Server - 124 Replies
Im Stariting this Topic By saying this : This Pack ISNT mine, I just share it here- Credits to Lightmagik from MxC. from the ORIGINAL thread in maxchaters.com : Hello.
Question concerning client side itemtype.dat modifications
08/09/2010 - Eudemons Online - 0 Replies
Hello, I got one of the itemtype.dat editors working. I got the itemtype.dat to show me the names of white eggs (Woo!), I was just wondering if it was possible to find the addresses for unidentified equipment, and modify those addresses to show me the quality of the unidents. Is this possible? If it is, how would I go about finding the addresses for unidents?
Zero Client Modifications [New: Autopatch Bypass]
02/08/2008 - Zero - 9 Replies
It was requested that someone make a bypass for Zero. I am making this thread to include all of my client modifications. Current Modifications: Autopatch Bypass Anti-Debugger Bypass You can download the compressed and modified client or if you wish to do further exploration and debugging, you can download the uncompressed version.
Client Modifications
01/29/2008 - Lin2 Exploits, Hacks, Bots, Tools & Macros - 8 Replies
© allcheats.ru Patch version 1.0 (not working on retail): 1. Zoom 2. Shows the lvl of the mobs 3. Shows if the mob is agressive or not 4. Shows the difference between the Treasure box and Treasure Chest 5. Shows the Max and the Min Speed of the runners at Monster Track Derby 6. Colorfull System Messages



All times are GMT +2. The time now is 13:06.


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.