-1

I'm using windows 7 and ollydbg to edit the game client.

I'm trying to disable a button on a game client. i have found wParam id of WM_COMMAND but i don't know what is the relation between wParam id and address id of memory or how to find the address id of memory using wParam id.

So my question is:

  1. Is there a relation between wParam and address id of memory?
  2. If not then how the wParam id can help me to find the address id of memory or it can not help at all ?

Note: i have used spy++ to fetch for this wParam id of WM_COMMAND (0x111).

user3725506
  • 155
  • 1
  • 1
  • 7
  • What the heck is an "address id"? A memory address? The address of what? `wParam` is the name of a function parameter usually, which is on the stack and won't have a fixed address. What are you trying to do? – Dark Falcon Jun 11 '14 at 15:34
  • i mean [address id of memory](http://prntscr.com/3rsryw) i'm trying to disable a button click on a game client !, i don't have access to the code of client so i'm trying to find the specific lines on ollydbg which is responsible to send WM_COMMAND to the main function so i can disable the click ! – user3725506 Jun 11 '14 at 15:39
  • possible duplicate of [How to find a function of application with ollydbg?](http://stackoverflow.com/questions/24148651/how-to-find-a-function-of-application-with-ollydbg) – Dark Falcon Jun 11 '14 at 15:42
  • that's not duplicated it's a different question ! there is no suggest to go in this way to disable and trace functions which sent to the main function on this [question](http://stackoverflow.com/questions/24148651/how-to-find-a-function-of-application-with-ollydbg), my goal not just to disable the button i have to know also how to trace any other functions ! – user3725506 Jun 11 '14 at 16:34

1 Answers1

0

check this both questions from reverseengineering, maybe they help you.

link 1

link 2

Community
  • 1
  • 1
Muhab
  • 367
  • 1
  • 2
  • 13