Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Dekaron > Dekaron Private Server
You last visited: Today at 08:12

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

Advertisement



[HELP] Ollydbg code.

Discussion on [HELP] Ollydbg code. within the Dekaron Private Server forum part of the Dekaron category.

Reply
 
Old   #1
 
*JayKay*'s Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 472
Received Thanks: 276
Post [HELP] Ollydbg code.

hello everyone, I have a problem to add this code in OllyDbg when I try to put the code I get an error, which is marked in the image. please someone help solve this problem.

cod: MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]


Image:



Thanks all.
*JayKay* is offline  
Old 11/27/2011, 19:08   #2
 
[DEV]DorianGray's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 245
Received Thanks: 163
enter it in binary (strg +e )

8B049594CEAD00

this will work
[DEV]DorianGray is offline  
Thanks
1 User
Old 11/27/2011, 21:03   #3
 
*JayKay*'s Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 472
Received Thanks: 276
Quote:
Originally Posted by [DEV]DorianGray View Post
enter it in binary (strg +e )

8B049594CEAD00

this will work
thanks for replying. could explain better how to act?
*JayKay* is offline  
Old 11/27/2011, 22:48   #4
 
[DEV]DorianGray's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 245
Received Thanks: 163
Quote:
Originally Posted by *JayKay* View Post
thanks for replying. could explain better how to act?
Sure Go to the Offset where you wanna add the Code and
Press STRG and E .

Then just enter the Code (not the Command !!) in "Hex+00" (like in the picture)
and press enter

The Signs in ASCII and UNICODE appear automatically if you enter anything in Hex+00



Uploaded with
[DEV]DorianGray is offline  
Thanks
1 User
Old 11/28/2011, 01:09   #5
 
*JayKay*'s Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 472
Received Thanks: 276
Thanks!!!!!
*JayKay* is offline  
Old 11/28/2011, 01:25   #6
 
[DEV]DorianGray's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 245
Received Thanks: 163
no problem i add the most codes like this

For me it s faster than adding the commands
and with the most codes it works
[DEV]DorianGray is offline  
Thanks
1 User
Old 11/28/2011, 13:29   #7
 
elite*gold: 0
Join Date: Oct 2011
Posts: 28
Received Thanks: 5
Quote:
Originally Posted by [DEV]DorianGray View Post
no problem i add the most codes like this

For me it s faster than adding the commands
and with the most codes it works
could u fix itemoptionupgrade system?
DekaronSo is offline  
Old 11/28/2011, 20:14   #8
 
HellSpider's Avatar
 
elite*gold: 20
Join Date: Aug 2008
Posts: 2,762
Received Thanks: 4,395
Your problem is that OllyDbg interprets your address as some symbolic name.

When you are referencing hex addresses, always append a 0 before the first character of the address in case it's non numeral.

Correct instruction:

MOV EAX,DWORD PTR DS:[EDX*4+0ADCE94]
HellSpider is offline  
Thanks
2 Users
Old 11/28/2011, 20:41   #9
 
[DEV]DorianGray's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 245
Received Thanks: 163
Quote:
Originally Posted by DekaronSo View Post
could u fix itemoptionupgrade system?
I donīt think that im PRO enough for that
I just started with the whole exe stuff a few weeks ago...........

When i have success in exe editing,it s more Luck than knowledge
I just try and try and try till it works
[DEV]DorianGray is offline  
Thanks
1 User
Old 11/29/2011, 02:21   #10
 
*JayKay*'s Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 472
Received Thanks: 276
Lightbulb

Quote:
Originally Posted by HellSpider View Post
Your problem is that OllyDbg interprets your address as some symbolic name.

When you are referencing hex addresses, always append a 0 before the first character of the address in case it's non numeral.

Correct instruction:

MOV EAX,DWORD PTR DS:[EDX*4+0ADCE94]

I have another doubt, I would crumble up and put the correct code so I've changed the two aloken call it was in the sequence and put the two new characters. my doubt is the placement would be correct codes? I would get this wrong you correct me. Thanks

reference for: game_tpack and game_mesh.

PHP Code:
0099B55F  /$ B8 209AAD00    MOV EAX,Dekaron_.00AD9A20                ;  ASCII "ALO"
0099B564  |. 80FA 06        CMP DL,6
0099B567  
|. 74 0A          JE SHORT Dekaron_.0099B573
0099B569  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B570  |. C2 0400        RETN 4
0099B573  
|> B8 BEB79900    MOV EAX,Dekaron_.0099B7BE                ;  ASCII "CON"
0099B578  |. 80FA 0A        CMP DL,0A
0099B57B  
|. 74 0A          JE SHORT Dekaron_.0099B587
0099B57D  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B584  |. C2 0400        RETN 4
0099B587  
|> B8 C3B79900    MOV EAX,Dekaron_.0099B7C3                ;  ASCII "RIP"
0099B58C  |. 80FA 0B        CMP DL,0B
0099B58F  
|. 74 07          JE SHORT Dekaron_.0099B598
0099B591  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B598  \> C3             RETN 
thanks for patience.
*JayKay* is offline  
Old 11/29/2011, 06:27   #11
 
[DEV]DorianGray's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 245
Received Thanks: 163
Quote:
Originally Posted by *JayKay* View Post
I have another doubt, I would crumble up and put the correct code so I've changed the two aloken call it was in the sequence and put the two new characters. my doubt is the placement would be correct codes? I would get this wrong you correct me. Thanks

reference for: game_tpack and game_mesh.

PHP Code:
0099B55F  /$ B8 209AAD00    MOV EAX,Dekaron_.00AD9A20                ;  ASCII "ALO"
0099B564  |. 80FA 06        CMP DL,6
0099B567  
|. 74 0A          JE SHORT Dekaron_.0099B573
0099B569  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B570  |. C2 0400        RETN 4
0099B573  
|> B8 BEB79900    MOV EAX,Dekaron_.0099B7BE                ;  ASCII "CON"
0099B578  |. 80FA 0A        CMP DL,0A
0099B57B  
|. 74 0A          JE SHORT Dekaron_.0099B587
0099B57D  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B584  |. C2 0400        RETN 4
0099B587  
|> B8 C3B79900    MOV EAX,Dekaron_.0099B7C3                ;  ASCII "RIP"
0099B58C  |. 80FA 0B        CMP DL,0B
0099B58F  
|. 74 07          JE SHORT Dekaron_.0099B598
0099B591  
|. 8B0495 94CEAD0>MOV EAX,DWORD PTR DS:[EDX*4+ADCE94]
0099B598  \> C3             RETN 
thanks for patience.
i have the same problem, i tried almost all possibilities

BTW, your codes can t work.
1. Its WSU & MSE , not CON & RIP i think
2. The ALO Lines get called from 2 different offsets (game_mesh & game_tpack)
(search for CALL 0099B4C3)

Maybe it works if you add CALL s for WSU and MSE there
[DEV]DorianGray is offline  
Thanks
1 User
Old 11/29/2011, 13:37   #12
 
[DEV]Harmony's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 815
Received Thanks: 431
Yes you're right, its not con and rip its WSU and MSE.
[DEV]Harmony is offline  
Thanks
1 User
Old 11/29/2011, 14:18   #13
 
LogLife's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 260
Received Thanks: 17
oh my gaad please share everything i will leech you all
i'm leecher please share i will leech wowwww evodk will share new class here
everyonce come here to leech , don't stop to share man go a head , i'm leeching
LogLife is offline  
Old 11/29/2011, 14:36   #14
 
[DEV]Harmony's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 815
Received Thanks: 431
Quote:
Originally Posted by LogLife View Post
oh my gaad please share everything i will leech you all
i'm leecher please share i will leech wowwww evodk will share new class here
everyonce come here to leech , don't stop to share man go a head , i'm leeching
You really have some issues. You say the same things in 3 sentence's, not only that but you look like a complete Idiot when you say such things. And we already know, you are...
[DEV]Harmony is offline  
Old 11/29/2011, 15:05   #15
 
elite*gold: 0
Join Date: Oct 2011
Posts: 28
Received Thanks: 5
Quote:
Originally Posted by [DEV]DorianGray View Post
I donīt think that im PRO enough for that
I just started with the whole exe stuff a few weeks ago...........

When i have success in exe editing,it s more Luck than knowledge
I just try and try and try till it works
i would look forward to your work on it . thanks .
DekaronSo is offline  
Reply


Similar Threads Similar Threads
[Help]OllyDbg
03/10/2011 - CO2 Programming - 14 Replies
Hi people, I'm having a question/problem while OllyDbg-ing Conquer.exe. I want to remove the MentorReward button (that one near ShoppingMall, ItemLock etc.). I've managed to remove the icon and not by deleting the icon files from the client, but I can't completly remove it from there. I think's a way cause, like they added it, they can remove it by reversing the steps or just delete some parts from that dissasembly code. What I'm asking for? Someone who's having a bit more knowledge about...
Help please with Ollydbg
02/24/2010 - Mabinogi - 1 Replies
ok ive tried the fix with the *.osc plugin and ive tried many other ways to get it to work with the .dlls but it still wont find the addresses to the CORRECT function that IDA PRO 32bit and 64 bit show for anything i look too mod ive even gone and put ollydbg on my 32 bit laptop and it still didnt work:mad: anyone have a idea how to edit them same way but different program or a fix?
OllyDBG
07/16/2009 - Perfect World - 5 Replies
hey can i have question what can i do with ollydbg at pw all? can i change my atk or gold with them? pls tell me what all can i do with this programm at pw:handsdown:
ollydbg
06/24/2009 - Dekaron - 3 Replies
can i take the new adress with ollydbg? is there any TUT?
Ollydbg
03/27/2007 - Planetside - 3 Replies
I can't seem to attach the planetside process into ollydbg. Is there a workaround for this?



All times are GMT +2. The time now is 08:12.


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.