^ 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
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.
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.
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.
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 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
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.
[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
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.